FORTRAN Generation
(/./ftp/cats/J/PAZh/24/343)

Conversion of standardized ReadMe file for file /./ftp/cats/J/PAZh/24/343 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/PAZh/24/343              New spectroscopic components        (Tokovinin, 1998)
*================================================================================
*New spectroscopic components in six multiple systems
*      Tokovinin A.A.
*     <Pis'ma Astron. Zh., 24, 343 (19980>
*     =1998PAZh...24..343T
*     =1998AstL...24..271T
C=============================================================================

C  Internal variables

      integer*4 i__

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

C  Declarations for 'table1.dat'	! Radial velocities and residuals

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

      character*10  Name       (nr__) ! Name of multiple system
      real*8        JD         (nr__) ! (d) [2449613/2450759] Date
      real*4        RV         (nr__) ! (km/s) Radial velocity
      real*4        e_RV       (nr__) ! (km/s) RMS error of RV
      real*4        O_C        (nr__) ! (km/s) ? Residual velocity to the orbit solution
      character*1   u_O_C      (nr__) ! ? Uncertainty flag on O-C
      character*3   Comp       (nr__) ! [a,b,a+b] Component label

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

C  Loading file 'table1.dat'	! Radial velocities and residuals

C  Format for file interpretation

    1 format(A10,2X,F11.3,2X,F6.2,4X,F4.2,3X,F5.2,A1,2X,A3)

C  Effective file loading

      open(unit=1,status='old',file=
     +'table1.dat')
      write(6,*) '....Loading file: table1.dat'
      do i__=1,204
        read(1,'(A53)')ar__
        read(ar__,1)
     +  Name(i__),JD(i__),RV(i__),e_RV(i__),O_C(i__),u_O_C(i__),
     +  Comp(i__)
        if(ar__(43:47) .EQ. '') O_C(i__) = rNULL__
c    ..............Just test output...........
        write(6,1)
     +  Name(i__),JD(i__),RV(i__),e_RV(i__),O_C(i__),u_O_C(i__),
     +  Comp(i__)
c    .......End.of.Just test output...........
      end do
      close(1)

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