Conversion of standardized ReadMe file for
file /./ftp/cats/J/A_A/402/171 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-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/402/171 Faint CSS radio sources at 74 MHz (Tschager+, 2003)
*================================================================================
*The determination of the spectral turnover in faint
*compact steep-spectrum radio sources using the VLA at 74 MHz.
* Tschager W., Schilizzi R.T., Roettgering H.J.A., Snellen I.A.G.,
* Miley G.K., Perley R.A.
* <Astron. Astrophys. 402, 171 (2003)>
* =2003A&A...402..171T
C=============================================================================
C Internal variables
integer*4 i__
c - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
C Declarations for 'table3.dat' ! Peak flux densities and peak frequencies for
35 CSS sources.
integer*4 nr__
parameter (nr__=35) ! Number of records
character*36 ar__ ! Full-size record
character*10 v_TSR2003_ (nr__) ! Source name (JHHMM+DDMM)
integer*4 S74MHz (nr__) ! (mJy) ? Flux density at 74MHz
integer*4 SPeak (nr__) ! (mJy) Peak flux-density (1)
integer*4 nuPeak (nr__) ! (MHz) Peak frequency (1)
real*4 alphaThick (nr__) ! Spectral index below the turnover (fixed) (1)
real*4 alphaThin (nr__) ! Spectral index above the turnover (1)
*Note (1): The fitted quantities and integrated intensities have
* associated uncertainties of 20%.
C=============================================================================
C Loading file 'table3.dat' ! Peak flux densities and peak frequencies for
* 35 CSS sources.
C Format for file interpretation
1 format(A10,1X,I4,1X,I4,1X,I3,1X,F5.2,1X,F5.2)
C Effective file loading
open(unit=1,status='old',file=
+'table3.dat')
write(6,*) '....Loading file: table3.dat'
do i__=1,35
read(1,'(A36)')ar__
read(ar__,1)
+ v_TSR2003_(i__),S74MHz(i__),SPeak(i__),nuPeak(i__),
+ alphaThick(i__),alphaThin(i__)
if(ar__(12:15) .EQ. '') S74MHz(i__) = iNULL__
c ..............Just test output...........
write(6,1)
+ v_TSR2003_(i__),S74MHz(i__),SPeak(i__),nuPeak(i__),
+ alphaThick(i__),alphaThin(i__)
c .......End.of.Just test output...........
end do
close(1)
C=============================================================================
stop
end