FORTRAN Generation
(/./ftp/cats/J/ApJ/789/125)

Conversion of standardized ReadMe file for file /./ftp/cats/J/ApJ/789/125 into FORTRAN code for loading all data files into arrays.

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/ApJ/789/125     Light curves of the quasar He 0435-1223    (Blackburne+, 2014)
*================================================================================
*The optical, ultraviolet, and X-ray structure of the quasar He 0435-1223.
*    Blackburne J.A., Kochanek C.S., Chen B., Dai X., Chartas G.
*   <Astrophys. J., 789, 125 (2014)>
*   =2014ApJ...789..125B    (SIMBAD/NED BibCode)
C=============================================================================

C  Internal variables

      integer*4 i__

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

C  Declarations for 'table1.dat'	! R-band Light Curves

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

      real*8        HJD        (nr__) ! (d) Heliocentric Julian Date
      real*4        RmagA      (nr__) ! (mag) R band magnitude for image A
      real*4        e_RmagA    (nr__) ! (mag) Uncertainty in Rmag-A
      real*4        RmagB      (nr__) ! (mag) R band magnitude for image B
      real*4        e_RmagB    (nr__) ! (mag) Uncertainty in Rmag-B
      real*4        RmagC      (nr__) ! (mag) R band magnitude for image C
      real*4        e_RmagC    (nr__) ! (mag) Uncertainty in Rmag-C
      real*4        RmagD      (nr__) ! (mag) R band magnitude for image D
      real*4        e_RmagD    (nr__) ! (mag) Uncertainty in Rmag-D

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

C  Loading file 'table1.dat'	! R-band Light Curves

C  Format for file interpretation

    1 format(
     +  F11.3,1X,F5.3,1X,F5.3,1X,F5.3,1X,F5.3,1X,F5.3,1X,F5.3,1X,F5.3,
     +  1X,F5.3)

C  Effective file loading

      open(unit=1,status='old',file=
     +'table1.dat')
      write(6,*) '....Loading file: table1.dat'
      do i__=1,403
        read(1,'(A59)')ar__
        read(ar__,1)
     +  HJD(i__),RmagA(i__),e_RmagA(i__),RmagB(i__),e_RmagB(i__),
     +  RmagC(i__),e_RmagC(i__),RmagD(i__),e_RmagD(i__)
c    ..............Just test output...........
        write(6,1)
     +  HJD(i__),RmagA(i__),e_RmagA(i__),RmagB(i__),e_RmagB(i__),
     +  RmagC(i__),e_RmagC(i__),RmagD(i__),e_RmagD(i__)
c    .......End.of.Just test output...........
      end do
      close(1)

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