Conversion of standardized ReadMe file for
file /./ftp/cats/J/A_A/611/A85 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-Sep-06
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/611/A85 Time-series photometry of V391 Peg (Silvotti+, 2018)
*================================================================================
*The sdB pulsating star V391 Peg and its putative giant planet revisited after
*13 years of time-series photometric data.
* Silvotti R., Schuh S., Kim S.-L., Lutz R., Reed M., Benatti S., Janulis R.,
* Lanteri L., Ostensen R., Marsh T.R., Dhillon V.S., 10 , Paparo M., Molnar L.
* <Astron. Astrophys. 611, A85 (2018)>
* =2018A&A...611A..85S (SIMBAD/NED BibCode)
C=============================================================================
C Internal variables
integer*4 i__
c - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
C Declarations for 'figure1.dat' ! Photometry
integer*4 nr__
parameter (nr__=217232) ! Number of records
character*77 ar__ ! Full-size record
real*8 BJD ! (d) Barycentric Julian Day (BJD-2450000) TDB (1)
real*8 RFlux ! Relative flux (2)
character*50 Comments ! Beginning of each observing run (3)
*Note (1): the Barycentric Julian day is given in units of Barycentric Dynamical
* Time following Eastman et al. (2010PASP..122..935E).
*Note (2): relative flux is obtained by dividing the ADUs by the mean value
* of each observing run and subtracting 1 (F/<F>-1).
*Note (3): a symbol "#" in column 28 marks the beginning of each observing run.
* More information on telescopes/instruments/filters used is in the
* paper and in Silvotti et al. (2007Natur.449..189S).
C=============================================================================
C Loading file 'figure1.dat' ! Photometry
C Format for file interpretation
1 format(F15.10,2X,F9.6,1X,A50)
C Effective file loading
open(unit=1,status='old',file=
+'figure1.dat')
write(6,*) '....Loading file: figure1.dat'
do i__=1,217232
read(1,'(A77)')ar__
read(ar__,1)BJD,RFlux,Comments
c ..............Just test output...........
write(6,1)BJD,RFlux,Comments
c .......End.of.Just test output...........
end do
close(1)
C=============================================================================
stop
end