Conversion of standardized ReadMe file for
file /./ftp/cats/J/A_A/710/L34 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-12
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/710/L34 TDE 2025aarm light curves (Simongini+, 2026)
*================================================================================
*Early emission characterization of TDE 2025aarm.
* Simongini A., Kherlakian M., Lopez-Oramas A., Becerra J., Cerasole D.
* <Astron. Astrophys. 710, L34 (2026)>
* =2026A&A...710L..34S (SIMBAD/NED BibCode)
C=============================================================================
C Internal variables
integer*4 i__
c - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
C Declarations for 'tablee3.dat' ! TDE 2025aarm light curves
integer*4 nr__
parameter (nr__=262) ! Number of records
character*37 ar__ ! Full-size record
real*8 MJD ! (d) Date of observation (MJD)
real*4 Phase ! (d) Phase from tpeak,
* tpeak estimated at MJD=61006.38+/-3.26
real*4 mag ! (mag) Apparent magnitude in Band
real*4 e_mag ! (mag) Magnitude error
character*4 Band ! [U g r o c mmm2 www1 www2] Observed band
character*5 Inst ! Instrument (ATLAS, Swift, ZTF)
C=============================================================================
C Loading file 'tablee3.dat' ! TDE 2025aarm light curves
C Format for file interpretation
1 format(F8.2,1X,F6.2,1X,F5.2,1X,F4.2,1X,A4,1X,A5)
C Effective file loading
open(unit=1,status='old',file=
+'tablee3.dat')
write(6,*) '....Loading file: tablee3.dat'
do i__=1,262
read(1,'(A37)')ar__
read(ar__,1)MJD,Phase,mag,e_mag,Band,Inst
c ..............Just test output...........
write(6,1)MJD,Phase,mag,e_mag,Band,Inst
c .......End.of.Just test output...........
end do
close(1)
C=============================================================================
stop
end