Conversion of standardized ReadMe file for
file /./ftp/cats/J/A_A/417/827 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-Sep-08
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/417/827 Relativistic corrections to Sunyaev-Zeldovich effect (Itoh+, 2004)
*================================================================================
*Relativistic corrections to the Sunyaev-Zeldovich effect for extremely hot
*clusters of galaxies.
* Itoh N., Nozawa S.
* <Astron. Astrophys., 417, 827-832 (2004)>
* =2004A&A...417..827I
C=============================================================================
C Internal variables
integer*4 i__
c - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
C Declarations for 'di.dat' ! Values of {Delta}I/y for {theta}_e_=0.002 to 0.100
(tables 1 to 5 of the paper)
integer*4 nr__
parameter (nr__=5050) ! Number of records
character*22 ar__ ! Full-size record
real*4 thetae (nr__) ! Value of {theta}_e_ = k_B_*Te/m_e_*c^2^
real*4 X (nr__) ! (rad/s/keV) Value of the variable X = {omega}/k_B_*To
real*4 DI_y (nr__) ! Value of {Delta}I/y for F({theta}_e_,X)
C=============================================================================
C Loading file 'di.dat' ! Values of {Delta}I/y for {theta}_e_=0.002 to 0.100
* (tables 1 to 5 of the paper)
C Format for file interpretation
1 format(F5.3,1X,F5.1,1X,E10.3)
C Effective file loading
open(unit=1,status='old',file=
+'di.dat')
write(6,*) '....Loading file: di.dat'
do i__=1,5050
read(1,'(A22)')ar__
read(ar__,1)thetae(i__),X(i__),DI_y(i__)
c ..............Just test output...........
write(6,1)thetae(i__),X(i__),DI_y(i__)
c .......End.of.Just test output...........
end do
close(1)
C=============================================================================
stop
end