FORTRAN Generation
(/./ftp/cats/J/ApJ/490/328)

Conversion of standardized ReadMe file for file /./ftp/cats/J/ApJ/490/328 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-28
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/490/328         "Mass Discrepancy" for Massive Stars (Burkholder+ 1997)
*================================================================================
*The "mass discrepancy" for massive stars: tests of models using
*spectroscopic binaries
*     Burkholder V., Massey P., Morrell N.
*    <Astrophys. J. 490, 328 (1997)>
*    =1997ApJ...490..328B
C=============================================================================

C  Internal variables

      integer*4 i__

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

C  Declarations for 'table2.dat'	! Radial velocities

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

      character*9   ID          ! Star identification
      real*8        HJD         ! (d) Heliocentric Julian Date
      real*4        Phase       ! Orbital phase
      integer*4     RVp         ! (km/s) Radial velocity of the primary, RV(p)
      real*4        O_Cp        ! (km/s) Obs. RV(p) minus calculated orbital velocity
      real*4        WTp         ! *Weight given RV(p) in computing orbit
      integer*4     RVs         ! (km/s) Radial velocity of the secondary, RV(s)
      real*4        O_Cs        ! (km/s) Obs. RV(s) minus calculated orbital velocity
      real*4        WTs         ! *Weight given RV(s) in computing orbit
*Note on WTp, WTs:
*  The weight given the primary's, or secondary's, radial velocity
*  in computing the orbit, usually sqrt(number of lines measured).

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

C  Loading file 'table2.dat'	! Radial velocities

C  Format for file interpretation

    1 format(
     +  A9,1X,F11.3,1X,F4.2,1X,I4,1X,F5.1,1X,F3.1,1X,I4,1X,F5.1,1X,
     +  F3.1)

C  Effective file loading

      open(unit=1,status='old',file=
     +'table2.dat')
      write(6,*) '....Loading file: table2.dat'
      do i__=1,143
        read(1,'(A56)')ar__
        read(ar__,1)ID,HJD,Phase,RVp,O_Cp,WTp,RVs,O_Cs,WTs
c    ..............Just test output...........
        write(6,1)ID,HJD,Phase,RVp,O_Cp,WTp,RVs,O_Cs,WTs
c    .......End.of.Just test output...........
      end do
      close(1)

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