FORTRAN Generation
()

Conversion of standardized ReadMe file for catalog 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-Mar-29
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/PASJ/58/389    O/Fe abundances of 15 RR Lyrae              (Takeda+, 2006)
*================================================================================
*On the spectroscopic determination of atmospheric parameters and O/Fe
*abundances of RR Lyrae stars.
*    Takeda Y., Honda S., Aoki W., Takada-hidai M., Zhao G., Chen Y.-Q.,
*    Shi J.-R.
*   <Publ. Astron. Soc. Jap., 58, 389-406 (2006)>
*   =2006PASJ...58..389T
C=============================================================================

C  Internal variables

      integer*4 i__

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

C  Declarations for 'tabe2/*'	! EW data for TT Lyr, DX Del, DH Peg, VY Ser and Sun

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

      integer*4     Line        ! Line number
      real*4        Code        ! FeI: 26.00  FeII: 26.01
      real*8        Lambda      ! (0.1nm) Wavelength
      real*8        Ep          ! (eV) Lower excitation potential (chi)
      real*8        loggf       ! Adopted log(gf) value
      real*4        EW          ! (0.1pm) Equivalent width
      real*8        Abund1      ! Fe abundance (sign inversed for Fe II lines)
      real*8        Abund2      ! Fe abundance (sign inversed for Fe I lines)

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

C  Loading file 'tabe2/*'	! EW data for TT Lyr, DX Del, DH Peg, VY Ser and Sun

C  Format for file interpretation

    1 format(I4,F6.2,F9.3,F7.3,F7.3,F6.1,F8.3,F8.3)

C  Effective file loading

      open(unit=1,status='old',file=
     +'J/PASJ/58/389/tabe2/*')
      write(6,*) '....Loading file: tabe2/*'
      do i__=1,16
        read(1,'(A55)')ar__
        read(ar__,1)Line,Code,Lambda,Ep,loggf,EW,Abund1,Abund2
c    ..............Just test output...........
        write(6,1)Line,Code,Lambda,Ep,loggf,EW,Abund1,Abund2
c    .......End.of.Just test output...........
      end do
      close(1)

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