Conversion of standardized ReadMe file for
file /./ftp/cats/J/A_A/541/A77 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/541/A77 Kohonen-selected unusual SDSS quasars (Meusinger+, 2012)
*================================================================================
*Unusual quasars from the Sloan Digital Sky Survey selected
*by means of Kohonen Self-Organizing Maps.
* Meusinger H., Schalldach P., Scholz R.-D., in der Au A., Newholm M.,
* de Hoon M., Kaminsky B.
* <Astron. Astrophys. 541, A77 (2012)>
* =2012A&A...541A..77M
C=============================================================================
C Internal variables
integer*4 i__
c - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
C Declarations for 'table3.dat' ! Unusual quasar catalogue
integer*4 nr__
parameter (nr__=1005) ! Number of records
character*105 ar__ ! Full-size record
integer*4 Seq ! [1/1005] Running number
character*18 SDSS ! SDSS J2000 equatorial coordinates
* (HHMMSS.ss+DDMMSS.s)
integer*4 fc ! [0/2] QCDR7 catalogue flag (1)
real*8 z ! ?=-9.999 Redshift from present study
integer*4 q_z ! [0/3] Redshift uncertainty flag, 0=certain (2)
real*4 i0mag ! (mag) i magnitude, corrected for galactic
* extinction (3)
real*4 iMAG ! (mag) ?=-99.99 Absolute i magnitude (4)
integer*4 fr ! (mag) [0/1] FIRST detection flag, 0=detection (5)
real*8 F1_4 ! (mJy) ?=-99.99 FIRST 1.4GHz peak flux
real*4 Ri ! ?=-99.99 Radio loudness parameter (6)
integer*4 chi2 ! ?=-999 Peculiarity index
integer*4 T1 ! [0/7] Type of highest significance (7)
integer*4 T2 ! [0/7] Type of median significance (7)
integer*4 T3 ! [0/7] Type of lowest significance (7)
character*29 Com ! Comments (8)
*Note (1): QCDR7 catalogue flag as follows:
* 0 = not in QCDR7 (Schneider+ 2010AJ....139.2360S, Cat. VII/260)
* 1 = in QCDR7, deviation in redshift <10%
* 2 = in QCDR7, deviation in redshift >10%
*Note (2): Redshift uncertainty flag as follows:
* 0 = certain
* 1 = likely, but not certain
* 2 = lack of certainly identifiable redshift indicators
* 3 = low signal-to-noise
*Note (3): Galactic foreground extinction from the "Galactic Dust Extinction
* Service" of the NASA/IPAC Infrared Science Archive
*Note (4): following Kennefick and Bursick (2008AJ....136.1799K) with
* alpha_{nu}_=-0.5.
*Note (5): 0/1 for detection/nondetection
*Note (6): following Ivezic et al. (2002AJ...124.2364I)
*Note (7): Type of significance flag as follows:
* 1 = unusual BAL quasars (mostly LoBAL quasars)
* 2 = quasars with strong but common BAL structures (mostly HiBALs)
* 3 = quasars where the whole continuum is significantly redder than
* the SDSS composite
* 4 = quasars with strong reddening in the ultraviolet
* 5 = weak emission line quasars
* 6 = strong iron emitters
* 7 = miscellaneous
* 0 = no type (only for T2 and T3)
*Note (8): Used abbreviations:
* abs = absorption
* ao = associated absorption
* bel = blueshifted emission line
* bq = (very) blue quasar
* em = emission
* dlas = damped Lyman alpha absorption system
* fg = foreground
* lst = longward-of-systemic trough
* mnt = many narrow troughs
* myst? = related to the two mysterious objects from Hall et al.
* (2002ApJS..141..267H)
* nlq = narrow-line quasar
* nt = narrow troughs
* ot = overlapping troughs
* sdvdpc = spatially distinct velocity-dependent partial covering
* see 0810(H02) = see object SDSS J081024.75+480615.5 in Hall et al.
* (2002ApJS..141..267H)
* uc = unusual continuum
* ulp = unusual line profile
C=============================================================================
C Loading file 'table3.dat' ! Unusual quasar catalogue
C Format for file interpretation
1 format(
+ I4,1X,A18,1X,I1,F7.3,1X,I1,1X,F5.2,1X,F6.2,1X,I1,1X,F7.2,1X,
+ F6.2,1X,I4,1X,I1,1X,I1,1X,I1,1X,A29)
C Effective file loading
open(unit=1,status='old',file=
+'table3.dat')
write(6,*) '....Loading file: table3.dat'
do i__=1,1005
read(1,'(A105)')ar__
read(ar__,1)
+ Seq,SDSS,fc,z,q_z,i0mag,iMAG,fr,F1_4,Ri,chi2,T1,T2,T3,Com
c ..............Just test output...........
write(6,1)
+ Seq,SDSS,fc,z,q_z,i0mag,iMAG,fr,F1_4,Ri,chi2,T1,T2,T3,Com
c .......End.of.Just test output...........
end do
close(1)
C=============================================================================
stop
end