FORTRAN Generation
(/./ftp/cats/J/A_A/347/164)

Conversion of standardized ReadMe file for file /./ftp/cats/J/A_A/347/164 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-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/A+A/347/164       HD 59435 Geneva photometry                 (Wade+, 1999)
*================================================================================
*The Ap spectroscopic binary HD 59435 revisited
*       Wade G., Mathys G., North P.
*      <Astron. Astrophys. 347, 164 (1999)>
*      =1999A&A...347..164W      (SIMBAD/NED BibCode)
C=============================================================================

C  Internal variables

      integer*4 i__

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

C  Declarations for 'table1.dat'	! Radial velocities of the components of HD 59435
                                 and field modulus <H> of the Ap component

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

      real*8        HJD         ! (d) Heliocentric Julian Date of the observation
*                                   (HJD-2440000)
      real*4        PhaseO      ! Orbital phase (1)
      real*4        RVp         ! (km/s) Radial velocity of primary
      real*4        e_RVp       ! (km/s) rms uncertainty on RVp
      real*4        RVs         ! (km/s) Radial velocity of secondary
      real*4        e_RVs       ! (km/s) rms uncertainty on RVs
      real*4        PhaseR      ! Rotational phase (2)
      integer*4     v_H_        ! (gauss) Field modulus
*Note (1): Orbital phases are computed according to the revised orbital ephemeris
*  described in the text.
*Note (2): Rotational phases refer to the Ap star, and are computed according to
*  the rotational ephemeris described in the text.

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

C  Declarations for 'table3.dat'	! Visual magnitudes and colour indices of HD 59435
                                 in the Geneva photometric system

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

      real*8        HJD_1       ! (d) Heliocentric Julian day
      integer*4     Q           ! Photometric Q weight (Rufener, 1988, Cat. <II/169>)
      real*4        Vmag        ! (mag) Magnitude in the visible
      integer*4     P           ! Photometric P weight (Rufener, 1988, Cat. <II/169>)
      real*4        v_U_B_      ! (mag) Geneva [U-B] index
      real*4        v_V_B_      ! (mag) Geneva [V-B] index
      real*4        v_B1_B_     ! (mag) Geneva [B1-B] index
      real*4        v_B2_B_     ! (mag) Geneva [B2-B] index
      real*4        v_V1_B_     ! (mag) Geneva [V1-B] index
      real*4        v_G_B_      ! (mag) Geneva [G-B]  index

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

C  Loading file 'table1.dat'	! Radial velocities of the components of HD 59435
*                                 and field modulus <H> of the Ap component

C  Format for file interpretation

    1 format(
     +  F9.3,1X,F5.3,1X,F5.2,1X,F4.2,1X,F5.2,1X,F4.2,1X,F5.3,1X,I4)

C  Effective file loading

      open(unit=1,status='old',file=
     +'table1.dat')
      write(6,*) '....Loading file: table1.dat'
      do i__=1,9
        read(1,'(A48)')ar__
        read(ar__,1)HJD,PhaseO,RVp,e_RVp,RVs,e_RVs,PhaseR,v_H_
c    ..............Just test output...........
        write(6,1)HJD,PhaseO,RVp,e_RVp,RVs,e_RVs,PhaseR,v_H_
c    .......End.of.Just test output...........
      end do
      close(1)

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

C  Loading file 'table3.dat'	! Visual magnitudes and colour indices of HD 59435
*                                 in the Geneva photometric system

C  Format for file interpretation

    2 format(
     +  F11.3,1X,I1,1X,F5.3,1X,I1,1X,F5.3,1X,F5.3,1X,F5.3,1X,F5.3,1X,
     +  F5.3,1X,F5.3)

C  Effective file loading

      open(unit=1,status='old',file=
     +'table3.dat')
      write(6,*) '....Loading file: table3.dat'
      do i__=1,152
        read(1,'(A57)')ar__1
        read(ar__1,2)
     +  HJD_1,Q,Vmag,P,v_U_B_,v_V_B_,v_B1_B_,v_B2_B_,v_V1_B_,v_G_B_
c    ..............Just test output...........
        write(6,2)
     +  HJD_1,Q,Vmag,P,v_U_B_,v_V_B_,v_B1_B_,v_B2_B_,v_V1_B_,v_G_B_
c    .......End.of.Just test output...........
      end do
      close(1)

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