FORTRAN Generation
(/./home/cats/J/A_A/676/A102)

Conversion of standardized ReadMe file for file /./home/cats/J/A_A/676/A102 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 2026-May-15
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/A+A/676/A102      Radio properties of the LOFAR lmETG sample  (Capetti+, 2023)
*================================================================================
*The LOFAR view of massive early-type galaxies:
*Transition from radio AGN to host emission.
*    Capetti A., Brienza M.
*   <Astron. Astrophys., 676, A102 (2023)>
*   =2023A&A...676A.102C    (SIMBAD/NED BibCode)
C=============================================================================

C  Internal variables

      integer*4 i__

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

C  Declarations for 'tabled1.dat'	! Radio properties of the lmETG sample

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

C  J2000 position composed of: RAdeg DEdeg
      character*24  Name        ! Name
      real*8        RAdeg       ! (deg) Right ascension (J2000)
      real*8        DEdeg       ! (deg) Declination (J2000)
      integer*4     v           ! (km/s) recession velocity
      real*4        KMAG        ! (mag) K-band absolute magnitude
      real*4        rms         ! (mJy/beam) r.m.s. noise of the LOFAR image
      character*1   l_F150      ! Limit flag on F150
      real*4        F150        ! (mJy) Flux density at 150MHz from LOFAR
      real*4        e_F150      ! (mJy) ? Flux density at 150MHz from LOFAR error
      character*1   l_L150      ! Limit flag on L150
      real*4        L150        ! (W/Hz) Luminosity at 150NHz from LOFAR
      character*1   n_L150      ! [EP] E for extended,
*                                     P for unresolved or marginally resolved

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

C  Loading file 'tabled1.dat'	! Radio properties of the lmETG sample

C  Format for file interpretation

    1 format(
     +  A24,1X,F8.4,1X,F7.4,1X,I4,1X,F6.2,1X,F4.2,1X,A1,F6.1,1X,F3.1,
     +  1X,A1,F5.2,1X,A1)

C  Effective file loading

      open(unit=1,status='old',file=
     +'tabled1.dat')
      write(6,*) '....Loading file: tabled1.dat'
      do i__=1,432
        read(1,'(A79)')ar__
        read(ar__,1)
     +  Name,RAdeg,DEdeg,v,KMAG,rms,l_F150,F150,e_F150,l_L150,L150,
     +  n_L150
        if(ar__(68:70) .EQ. '') e_F150 = rNULL__
c    ..............Just test output...........
        write(6,1)
     +  Name,RAdeg,DEdeg,v,KMAG,rms,l_F150,F150,e_F150,l_L150,L150,
     +  n_L150
c    .......End.of.Just test output...........
      end do
      close(1)

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