FORTRAN Generation
(/./ftp/cats/J/A_A/706/A127)

Conversion of standardized ReadMe file for file /./ftp/cats/J/A_A/706/A127 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-Jun-13
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/706/A127      CIT 6 and IRC+10216 30-50GHz spectra   (Nguyen-Luong+, 2026)
*================================================================================
*A spectral-line survey of CIT 6 between 30 and 50 GHz with the eQ receiver
*at NRO 45m.
*    Nguyen-Luong Q., Nakamura F., Taniguchi K., Dinh-V-Trung, Liu S.-Y.,
*    Shimoikura T., Chiong C.-C., Dobashi K., Hirano N., Yonekura Y.,
*    Nishimura A., Ogawa H., Chien C., Ho C.-T., Hwang Y.-J., Yeh Y.-T.,
*    Lai S.-P., Fujii Y., Yamasaki Y., Kawabe R., Nolan A., Dung Pham V.
*    <Astron. Astrophys. 706, A127 (2026)>
*    =2026A&A...706A.127N        (SIMBAD/NED BibCode)
C=============================================================================

C  Internal variables

      integer*4 i__

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

C  Declarations for 'list.dat'	! List of spectra

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

      character*9   Name        ! Star name
      character*3   Inst        ! [LSB/USB] Instrument
      character*9   Band        ! Frequency interval
      character*9   FileName    ! Name of the spectrum table in subdirectory sp

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

C  Declarations for 'sp/*'	! Individual spectra

      integer*4 nr__1
      parameter (nr__1=20)	! Number of records
      character*33 ar__1  	! Full-size record

      integer*4     Seq         ! Sequential number
      real*8        Freq        ! (GHz) Frequency
      real*4        T_          ! (K) Antenna temperature

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

C  Loading file 'list.dat'	! List of spectra

C  Format for file interpretation

    1 format(A9,1X,A3,1X,A9,1X,A9)

C  Effective file loading

      open(unit=1,status='old',file=
     +'list.dat')
      write(6,*) '....Loading file: list.dat'
      do i__=1,20
        read(1,'(A33)')ar__
        read(ar__,1)Name,Inst,Band,FileName
c    ..............Just test output...........
        write(6,1)Name,Inst,Band,FileName
c    .......End.of.Just test output...........
      end do
      close(1)

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

C  Loading file 'sp/*'	! Individual spectra

C  Format for file interpretation

    2 format(I4,1X,F16.13,1X,E11.7)

C  Effective file loading

      open(unit=1,status='old',file=
     +'sp/*')
      write(6,*) '....Loading file: sp/*'
      do i__=1,20
        read(1,'(A33)')ar__1
        read(ar__1,2)Seq,Freq,T_
c    ..............Just test output...........
        write(6,2)Seq,Freq,T_
c    .......End.of.Just test output...........
      end do
      close(1)

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