CDS.headStuff2 FORTRAN Generation
()

Conversion of standardized ReadMe file for catalog into FORTRAN code for reading data files line by line.

Note that special values are assigned to unknown or unspecified numbers (also called NULL numbers); when necessary, the coordinate components making up the right ascension and declination are converted into floating-point numbers representing these angles in degrees.



      program load_ReadMe
C=============================================================================
C  F77-compliant program generated by readme2f_1.81 (2015-09-23), on 2024-Apr-27
C=============================================================================
*  This code was generated from the ReadMe file documenting a catalogue
*  according to the "Standard for Documentation of Astronomical Catalogues"
*  currently in use by the Astronomical Data Centers (CDS, ADC, A&A)
*  (see full documentation at URL http://vizier.u-strasbg.fr/doc/catstd.htx)
*  Please report problems or questions to   
C=============================================================================

      implicit none
*  Unspecified or NULL values, generally corresponding to blank columns,
*  are assigned one of the following special values:
*     rNULL__    for unknown or NULL floating-point values
*     iNULL__    for unknown or NULL   integer      values
      real*4     rNULL__
      integer*4  iNULL__
      parameter  (rNULL__=--2147483648.)  	! NULL real number
      parameter  (iNULL__=(-2147483647-1))	! NULL int  number
      integer    idig			! testing NULL number

C=============================================================================
Cat. J/ApJ/682/1205      Fast transients in the Fornax cluster         (Rau+, 2008)
*================================================================================
*A survey for fast transients in the Fornax cluster of galaxies.
*    Rau A., Ofek E.O., Kulkarni S.R., Madore B.F., Pevunova O., Ajello M.
*   <Astrophys. J., 682, 1205-1216 (2008)>
*   =2008ApJ...682.1205R
C=============================================================================

C  Internal variables

      integer*4 i__

c - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 

C  Declarations for 'table3.dat'	! Summary of detected sources

      integer*4 nr__
      parameter (nr__=7)	! Number of records
      character*99 ar__   	! Full-size record

C  J2000 position composed of: RAh RAm RAs DE- DEd DEm DEs
      real*8        RAdeg       ! (deg) Right Ascension J2000
      real*8        DEdeg       ! (deg)     Declination J2000
C  ---------------------------------- ! (position vector(s) in degrees)

      character*9   Name        ! Source identification (<[ROK2008] FA-1> in
*                                  Simbad for the 5 new variables)
      integer*4     RAh         ! (h) Hour of right ascension (J2000)
      integer*4     RAm         ! (min) Minute of right ascension (J2000)
      real*4        RAs         ! (s) Second of right ascension (J2000)
      character*1   DE_         ! Declination sign (J2000)
      integer*4     DEd         ! (deg) Degree of declination (J2000)
      integer*4     DEm         ! (arcmin) Arcminute of declination (J2000)
      real*4        DEs         ! (arcsec) Arcsecond of declination (J2000)
      real*4        Bmag        ! (mag) Observed peak B-band magnitude
      real*4        e_Bmag      ! (mag) Uncertainty in Bmag
      character*1   f_Bmag      ! [de] Flag on Bmag (1)
      real*4        Bq          ! (mag) ? Mean or quiescence B-band magnitude (2)
      real*4        e_Bq        ! (mag) ? Uncertainty in Bq
      character*21  Class       ! Class of object
      real*4        Dist        ! (kpc) Projected distance to center of nearest galaxy
      integer*4     NGC         ! NGC number of nearest galaxy
*Note (1): Flags as follows:
*   d = Observed B-band magnitude on 2006 October 23.13 UT.
*   e = Observed B-band magnitude on 2006 November 17.58 UT.
*Note (2): Observed mean (for periodic variables) or quiescence (for
*     eruptive variables) B-band magnitude.

c - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 

C  Declarations for 'table4.dat'	! Data table for the 5 foreground variables found
                             in the survey

      integer*4 nr__1
      parameter (nr__1=385)	! Number of records
      character*27 ar__1  	! Full-size record

      character*4   Name_1      ! Source name
      real*8        MJD         ! (d) Modified Julian Date
      real*4        Bmag_1      ! (mag) The B band magnitude
      real*4        e_Bmag_1    ! (mag) Error in Bmag

C=============================================================================

C  Loading file 'table3.dat'	! Summary of detected sources

C  Format for file interpretation

    1 format(
     +  A9,1X,I2,1X,I2,1X,F5.2,1X,A1,I2,1X,I2,1X,F4.1,1X,F5.2,1X,F4.2,
     +  A1,1X,F5.2,1X,F4.2,1X,A21,1X,F4.1,12X,I4)

C  Effective file loading

      open(unit=1,status='old',file=
     +'table3.dat')
      write(6,*) '....Loading file: table3.dat'
      do i__=1,7
        read(1,'(A99)')ar__
        read(ar__,1)
     +  Name,RAh,RAm,RAs,DE_,DEd,DEm,DEs,Bmag,e_Bmag,f_Bmag,Bq,e_Bq,
     +  Class,Dist,NGC
        if(ar__(47:51) .EQ. '') Bq = rNULL__
        if(ar__(53:56) .EQ. '') e_Bq = rNULL__
        RAdeg = rNULL__
        DEdeg = rNULL__
c  Derive coordinates RAdeg and DEdeg from input data
c  (RAdeg and DEdeg are set to rNULL__ when unknown)
        if(RAh .GT. -180) RAdeg=RAh*15.
        if(RAm .GT. -180) RAdeg=RAdeg+RAm/4.
        if(RAs .GT. -180) RAdeg=RAdeg+RAs/240.
        if(DEd .GE. 0) DEdeg=DEd
        if(DEm .GE. 0) DEdeg=DEdeg+DEm/60.
        if(DEs .GE. 0) DEdeg=DEdeg+DEs/3600.
        if(DE_.EQ.'-'.AND.DEdeg.GE.0) DEdeg=-DEdeg
c    ..............Just test output...........
        write(6,1)
     +  Name,RAh,RAm,RAs,DE_,DEd,DEm,DEs,Bmag,e_Bmag,f_Bmag,Bq,e_Bq,
     +  Class,Dist,NGC
        write(6,'(6H Pos: 2F8.4)') RAdeg,DEdeg
c    .......End.of.Just test output...........
      end do
      close(1)

C=============================================================================

C  Loading file 'table4.dat'	! Data table for the 5 foreground variables found
*                             in the survey

C  Format for file interpretation

    2 format(A4,1X,F11.5,1X,F5.2,1X,F4.2)

C  Effective file loading

      open(unit=1,status='old',file=
     +'table4.dat')
      write(6,*) '....Loading file: table4.dat'
      do i__=1,385
        read(1,'(A27)')ar__1
        read(ar__1,2)Name_1,MJD,Bmag_1,e_Bmag_1
c    ..............Just test output...........
        write(6,2)Name_1,MJD,Bmag_1,e_Bmag_1
c    .......End.of.Just test output...........
      end do
      close(1)

C=============================================================================
      stop
      end