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-20
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/AJ/137/236        CC Com and BV Dra light curves           (Yang+, 2009)
*================================================================================
*Orbital period changes and their evolutionary status for weak-contact binaries.
*II. CC Comae Berenices and BV Draconis.
*    Yang Y.-G., Lu G.-L., Yin X.-G., Zhu C.-H., Nakajima K.
*   <Astron. J., 137, 236-245 (2009)>
*   =2009AJ....137..236Y
C=============================================================================

C  Internal variables

      integer*4 i__

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

C  Declarations for 'table3.dat'	! CCD photometric observations in BVRI-bands of
                              the eclipsing binary CC Com

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

      real*8        HJD_B       ! (d) B band Heliocentric Julian Date
      real*4        Bmag        ! (mag) B band magnitude
      real*8        HJD_V       ! (d) ? V band Heliocentric Julian Date
      real*4        Vmag        ! (mag) ? V band magnitude
      real*8        HJD_R       ! (d) ? R band Heliocentric Julian Date
      real*4        Rmag        ! (mag) ? R band magnitude
      real*8        HJD_I       ! (d) ? I band Heliocentric Julian Date
      real*4        Imag        ! (mag) ? I band magnitude

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

C  Loading file 'table3.dat'	! CCD photometric observations in BVRI-bands of
*                              the eclipsing binary CC Com

C  Format for file interpretation

    1 format(
     +  F12.4,1X,F6.3,1X,F12.4,1X,F6.3,1X,F12.4,1X,F6.3,1X,F12.4,1X,
     +  F6.3)

C  Effective file loading

      open(unit=1,status='old',file=
     +'J/AJ/137/236/table3.dat')
      write(6,*) '....Loading file: table3.dat'
      do i__=1,196
        read(1,'(A79)')ar__
        read(ar__,1)HJD_B,Bmag,HJD_V,Vmag,HJD_R,Rmag,HJD_I,Imag
        if(ar__(21:32) .EQ. '') HJD_V = rNULL__
        if(ar__(34:39) .EQ. '') Vmag = rNULL__
        if(ar__(41:52) .EQ. '') HJD_R = rNULL__
        if(ar__(54:59) .EQ. '') Rmag = rNULL__
        if(ar__(61:72) .EQ. '') HJD_I = rNULL__
        if(ar__(74:79) .EQ. '') Imag = rNULL__
c    ..............Just test output...........
        write(6,1)HJD_B,Bmag,HJD_V,Vmag,HJD_R,Rmag,HJD_I,Imag
c    .......End.of.Just test output...........
      end do
      close(1)

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