FORTRAN Generation
(/./ftp/cats/J/MNRAS/451/2263)

Conversion of standardized ReadMe file for file /./ftp/cats/J/MNRAS/451/2263 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-19
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/MNRAS/451/2263   Differential photometry of the EB* HATS551-027  (Zhou+, 2015)
*================================================================================
*A 0.24+0.18M_{sun}_ double-lined eclipsing binary from the HATSouth survey.
*    Zhou G., Bayliss D., Hartman J.D., Rabus M., Bakos G.A., Jordan A.,
*    Brahm R., Penev K., Csubry Z., Mancini L., Espinoza N., de Val-Borro M.,
*    Bhatti W., Ciceri S., Henning T., Schmidt B., Murphy S.J., Butler R.P.,
*    Arriagada P., Shectman S., Crane J., Thompson I., Suc V., Noyes R.W.
*   <Mon. Not. R. Astron. Soc., 451, 2263-2277 (2015)>
*   =2015MNRAS.451.2263Z    (SIMBAD/NED BibCode)
C=============================================================================

C  Internal variables

      integer*4 i__

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

C  Declarations for 'table2.dat'	! HATS551-027 differential photometry

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

      real*8        BJD         ! (d) Barycentric Julian Date
      real*8        Flux        ! Flux in filter
      real*8        e_Flux      ! Uncertainty in Flux
      character*8   Inst        ! Instrument (HATSouth, FTS, SWOPE) (1)
      character*2   Filt        ! [r'i'] Filter
*Note (1): For the HATSouth light curve these magnitudes have been detrended
*          using the External Parameter Decorrelation (EPD; Bakos et al.
*          2007ApJ...670..826B) and Trend Filtering Algorithm (TFA;
*          Kovacs, Bakos & Noyes, 2005MNRAS.356..557K) procedures prior to
*          fitting a transit model to the light curve. Primarily as a result of
*          this detrending, but also due to blending from neighbours, the
*          apparent HATSouth transit depth is ~90 per cent that of the true
*          depth in the Sloan r filter.

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

C  Loading file 'table2.dat'	! HATS551-027 differential photometry

C  Format for file interpretation

    1 format(F13.5,1X,F14.12,1X,F7.5,1X,A8,1X,A2)

C  Effective file loading

      open(unit=1,status='old',file=
     +'table2.dat')
      write(6,*) '....Loading file: table2.dat'
      do i__=1,10690
        read(1,'(A48)')ar__
        read(ar__,1)BJD,Flux,e_Flux,Inst,Filt
c    ..............Just test output...........
        write(6,1)BJD,Flux,e_Flux,Inst,Filt
c    .......End.of.Just test output...........
      end do
      close(1)

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