Conversion of standardized ReadMe file for
file /./ftp/cats/J/AJ/140/2052 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-Aug-11
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/AJ/140/2052 MESS: Multi-wavelength Extreme Starburst Sample (Laag+, 2010)
*================================================================================
*The multi-wavelength extreme starburst sample of luminous galaxies.
*I. Sample characteristics.
* Laag E., Croft S., Canalizo G., Lacy M.
* <Astron. J., 140, 2052-2069 (2010)>
* =2010AJ....140.2052L
C=============================================================================
C Internal variables
integer*4 i__
c - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
C Declarations for 'table1.dat' ! The Sample
integer*4 nr__
parameter (nr__=138) ! Number of records
character*44 ar__ ! Full-size record
C J2000 position composed of: RAdeg DEdeg
character*14 Name ! SDSS name (JHHMMSS+DDMMSS)
character*1 n_logSFR ! [b] SFR computed from SDSS-DR4 release (1)
real*8 RAdeg ! (deg) Right ascension in decimal degrees (J2000)
real*8 DEdeg ! (deg) Declination in decimal degrees (J2000)
real*4 z ! SDSS spectroscopic redshift
real*4 logSFR ! ([Msun/yr]) Brinchmann et al. (2004MNRAS.351.1151B)
* star formation rate, with SDSS-DR7
*Note (1): b: This source was not included in the DR7 SFR release, so the
* SFR is from the DR4 release.
c - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
C Declarations for 'table2.dat' ! MIPS photometry
integer*4 nr__1
parameter (nr__1=138) ! Number of records
character*55 ar__1 ! Full-size record
character*14 Name_1 ! SDSS name (JHHMMSS+DDMMSS)
real*4 F24 ! (mJy) MIPS flux at 24um
real*4 e_F24 ! (mJy) rms uncertainty on F24
real*4 F70 ! (mJy) MIPS flux at 70um
real*4 e_F70 ! (mJy) rms uncertainty on F70
real*4 F160 ! (mJy) MIPS flux at 160um
real*4 e_F160 ! (mJy) rms uncertainty on F160
real*4 logLIR ! ([Lsun]) Total infrared luminosity
C=============================================================================
C Loading file 'table1.dat' ! The Sample
C Format for file interpretation
1 format(A14,A1,1X,F8.4,1X,F8.4,1X,F5.3,1X,F4.2)
C Effective file loading
open(unit=1,status='old',file=
+'table1.dat')
write(6,*) '....Loading file: table1.dat'
do i__=1,138
read(1,'(A44)')ar__
read(ar__,1)Name,n_logSFR,RAdeg,DEdeg,z,logSFR
c ..............Just test output...........
write(6,1)Name,n_logSFR,RAdeg,DEdeg,z,logSFR
c .......End.of.Just test output...........
end do
close(1)
C=============================================================================
C Loading file 'table2.dat' ! MIPS photometry
C Format for file interpretation
2 format(
+ A14,1X,F5.1,1X,F3.1,1X,F6.1,1X,F5.1,1X,F6.1,1X,F5.1,1X,F4.1)
C Effective file loading
open(unit=1,status='old',file=
+'table2.dat')
write(6,*) '....Loading file: table2.dat'
do i__=1,138
read(1,'(A55)')ar__1
read(ar__1,2)Name_1,F24,e_F24,F70,e_F70,F160,e_F160,logLIR
c ..............Just test output...........
write(6,2)Name_1,F24,e_F24,F70,e_F70,F160,e_F160,logLIR
c .......End.of.Just test output...........
end do
close(1)
C=============================================================================
stop
end