Conversion of standardized ReadMe file for
file /./ftp/cats/J/A_A/403/675 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 2026-Jun-13
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/403/675 UBV light curves of IU Aur (Ozdemir+, 2003)
*================================================================================
*Refinement of third body parameters and new photometric results
*for the early-type multiple system IU Aurigae.
* Ozdemir S., Mayer P., Drechsel H., Demircan O., Ak H.
* <Astron. Astrophys. 403, 675 (2003)>
* =2003A&A...403..675O
C=============================================================================
C Internal variables
integer*4 i__
c - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
C Declarations for 'umag.dat' ! Photometric data of IU Aur in U filter
integer*4 nr__
parameter (nr__=966) ! Number of records
character*47 ar__ ! Full-size record
real*8 HJD (nr__) ! (d) Heliocentric Julian Day
character*1 Filt (nr__) ! [UBV] Filter
real*4 Phase1 (nr__) ! [0/1] Phase calculated according to Eq. (1) in
* the paper
real*4 Diffmag (nr__) ! (mag) Differential magnitude in the filter (1)
real*4 Phase2 (nr__) ! ? [0/1] Averaged phase by binning 0.01 phase
* interval
real*4 Flux (nr__) ! ? Averaged and normalized light in the filter
*Note (1): Differential magnitudes were obtained relative to the comparison
* star HD 35619 (SAO 58048).
c - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
C Declarations for 'bmag.dat' ! Photometric data of IU Aur in B filter
integer*4 nr__1
parameter (nr__1=959) ! Number of records
character*47 ar__1 ! Full-size record
real*8 HJD_1 (nr__1) ! (d) Heliocentric Julian Day
character*1 Filt_1 (nr__1) ! [UBV] Filter
real*4 Phase1_1 (nr__1) ! [0/1] Phase calculated according to Eq. (1) in
* the paper
real*4 Diffmag_1 (nr__1) ! (mag) Differential magnitude in the filter (1)
real*4 Phase2_1 (nr__1) ! ? [0/1] Averaged phase by binning 0.01 phase
* interval
real*4 Flux_1 (nr__1) ! ? Averaged and normalized light in the filter
*Note (1): Differential magnitudes were obtained relative to the comparison
* star HD 35619 (SAO 58048).
c - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
C Declarations for 'vmag.dat' ! Photometric data of IU Aur in V filter
integer*4 nr__2
parameter (nr__2=947) ! Number of records
character*47 ar__2 ! Full-size record
real*8 HJD_2 (nr__2) ! (d) Heliocentric Julian Day
character*1 Filt_2 (nr__2) ! [UBV] Filter
real*4 Phase1_2 (nr__2) ! [0/1] Phase calculated according to Eq. (1) in
* the paper
real*4 Diffmag_2 (nr__2) ! (mag) Differential magnitude in the filter (1)
real*4 Phase2_2 (nr__2) ! ? [0/1] Averaged phase by binning 0.01 phase
* interval
real*4 Flux_2 (nr__2) ! ? Averaged and normalized light in the filter
*Note (1): Differential magnitudes were obtained relative to the comparison
* star HD 35619 (SAO 58048).
C=============================================================================
C Loading file 'umag.dat' ! Photometric data of IU Aur in U filter
C Format for file interpretation
1 format(F13.5,1X,A1,3X,F5.3,3X,F6.3,2X,F5.3,3X,F5.3)
C Effective file loading
open(unit=1,status='old',file=
+'umag.dat')
write(6,*) '....Loading file: umag.dat'
do i__=1,966
read(1,'(A47)')ar__
read(ar__,1)
+ HJD(i__),Filt(i__),Phase1(i__),Diffmag(i__),Phase2(i__),
+ Flux(i__)
if(ar__(35:39) .EQ. '') Phase2(i__) = rNULL__
if(ar__(43:47) .EQ. '') Flux(i__) = rNULL__
c ..............Just test output...........
write(6,1)
+ HJD(i__),Filt(i__),Phase1(i__),Diffmag(i__),Phase2(i__),
+ Flux(i__)
c .......End.of.Just test output...........
end do
close(1)
C=============================================================================
C Loading file 'bmag.dat' ! Photometric data of IU Aur in B filter
C Format for file interpretation
2 format(F13.5,1X,A1,3X,F5.3,3X,F6.3,2X,F5.3,3X,F5.3)
C Effective file loading
open(unit=1,status='old',file=
+'bmag.dat')
write(6,*) '....Loading file: bmag.dat'
do i__=1,959
read(1,'(A47)')ar__1
read(ar__1,2)
+ HJD_1(i__),Filt_1(i__),Phase1_1(i__),Diffmag_1(i__),
+ Phase2_1(i__),Flux_1(i__)
if(ar__1(35:39) .EQ. '') Phase2_1(i__) = rNULL__
if(ar__1(43:47) .EQ. '') Flux_1(i__) = rNULL__
c ..............Just test output...........
write(6,2)
+ HJD_1(i__),Filt_1(i__),Phase1_1(i__),Diffmag_1(i__),
+ Phase2_1(i__),Flux_1(i__)
c .......End.of.Just test output...........
end do
close(1)
C=============================================================================
C Loading file 'vmag.dat' ! Photometric data of IU Aur in V filter
C Format for file interpretation
3 format(F13.5,1X,A1,3X,F5.3,3X,F6.3,2X,F5.3,3X,F5.3)
C Effective file loading
open(unit=1,status='old',file=
+'vmag.dat')
write(6,*) '....Loading file: vmag.dat'
do i__=1,947
read(1,'(A47)')ar__2
read(ar__2,3)
+ HJD_2(i__),Filt_2(i__),Phase1_2(i__),Diffmag_2(i__),
+ Phase2_2(i__),Flux_2(i__)
if(ar__2(35:39) .EQ. '') Phase2_2(i__) = rNULL__
if(ar__2(43:47) .EQ. '') Flux_2(i__) = rNULL__
c ..............Just test output...........
write(6,3)
+ HJD_2(i__),Filt_2(i__),Phase1_2(i__),Diffmag_2(i__),
+ Phase2_2(i__),Flux_2(i__)
c .......End.of.Just test output...........
end do
close(1)
C=============================================================================
stop
end