FORTRAN Generation
(/./ftp/cats/J/ApJ/786/59)

Conversion of standardized ReadMe file for file /./ftp/cats/J/ApJ/786/59 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/ApJ/786/59      SED fitting results of HETDEX pilot survey      (Hagen+, 2014)
*================================================================================
*Spectral energy distribution fitting of HETDEX pilot survey Ly{alpha} emitters
*in COSMOS and GOODS-N.
*    Hagen A., Ciardullo R., Gronwall C., Acquaviva V., Bridge J., Zeimann G.R.,
*    Blanc G.A., Bond N.A., Finkelstein S.L., Song M., Gawiser E., Fox D.B.,
*    Gebhardt H., Malz A.I., Schneider D.P., Drory N., Gebhardt K., Hill G.J.
*   <Astrophys. J., 786, 59 (2014)>
*   =2014ApJ...786...59H    (SIMBAD/NED BibCode)
C=============================================================================

C  Internal variables

      integer*4 i__

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

C  Declarations for 'table3.dat'	! SED Fitting Results

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

      integer*4     HPS         ! [150/474] Galaxy identifier (HPS NNN in Simbad)
      real*4        z           ! Redshift
      real*4        logM_       ! ([Msun]) Log of stellar mass
      real*4        E_logM_     ! ([Msun]) Upper limit uncertainty in logM*
      real*4        e_logM__1   ! ([Msun]) Lower limit uncertainty in logM*
      real*4        logAge      ! ([yr]) Log of Age
      real*4        E_logAge    ! ([yr]) Upper limit uncertainty in logAge
      real*4        e_logAge_1  ! ([yr]) Lower limit uncertainty in logAge
      real*4        E_B_V       ! Stellar reddening
      real*4        E_E_B_V     ! Upper limit uncertainty in E(B-V)
      real*4        e_E_B_V_1   ! Lower limit uncertainty in E(B-V)
      real*4        Rad         ! (kpc) Half-light radius
      real*4        e_Rad       ! (kpc) Error in Rad
      real*4        chi2        ! Reduced {chi}^2^ value

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

C  Loading file 'table3.dat'	! SED Fitting Results

C  Format for file interpretation

    1 format(
     +  3X,I3,1X,F4.2,1X,F5.2,1X,F4.2,1X,F4.2,1X,F4.2,1X,F4.2,1X,F4.2,
     +  1X,F5.3,1X,F5.3,1X,F5.3,1X,F4.2,1X,F4.2,1X,F4.1)

C  Effective file loading

      open(unit=1,status='old',file=
     +'table3.dat')
      write(6,*) '....Loading file: table3.dat'
      do i__=1,63
        read(1,'(A75)')ar__
        read(ar__,1)
     +  HPS,z,logM_,E_logM_,e_logM__1,logAge,E_logAge,e_logAge_1,
     +  E_B_V,E_E_B_V,e_E_B_V_1,Rad,e_Rad,chi2
c    ..............Just test output...........
        write(6,1)
     +  HPS,z,logM_,E_logM_,e_logM__1,logAge,E_logAge,e_logAge_1,
     +  E_B_V,E_E_B_V,e_E_B_V_1,Rad,e_Rad,chi2
c    .......End.of.Just test output...........
      end do
      close(1)

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