FORTRAN Generation
(/./ftp/cats/J/ApJ/688/826)

Conversion of standardized ReadMe file for file /./ftp/cats/J/ApJ/688/826 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 2024-Mar-28
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/ApJ/688/826        Radio and X-ray-emitting broad-line AGNs        (Li+, 2008)
*================================================================================
*The black hole fundamental plane: revisited with a larger sample of radio and
*X-ray-emitting broad-line AGNs.
*    Li Z.-Y., Wu X.-B., Wang R.
*   <Astrophys. J., 688, 826-836 (2008)>
*   =2008ApJ...688..826L
C=============================================================================

C  Internal variables

      integer*4 i__

c - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 

C  Declarations for 'table1.dat'	! The sample of AGNs

      integer*4 nr__
      parameter (nr__=725)	! Number of records
      character*63 ar__   	! Full-size record

      character*19  SDSS        ! AGN designation (JHHMMSS.ss+DDMMSS.s)
      real*4        z           ! SDSS spectroscopic redshift
      real*4        logLX       ! ([10-7W]) Log of (0.1-2.4keV) soft X-ray luminosity
      real*4        logLr       ! ([10-7W]) Log of rest-frame 1.4GHz radio luminosity
      real*4        logR        ! ([-]) Log of radio-loudness
      real*4        logM        ! ([Msun]) Log of black hole mass
      real*4        logLbl      ! ([10-7W]) Log of broad emission line luminosity (1)
      integer*4     n_logLbl    ! Line used for the broad-line luminosity (2)
*Note (1): Represented by the H_beta_ broad component luminosity or the
*          MgII emission line luminosity (when H_beta_ is unavailable).
*Note (2): Flags as follows:
*    1 = H{beta} broad component luminosity is used to represent the broad
*        emission line luminosity.
*    0 = MgII emission line luminosity is used to represent the broad emission
*        line luminosity.

C=============================================================================

C  Loading file 'table1.dat'	! The sample of AGNs

C  Format for file interpretation

    1 format(
     +  5X,A19,1X,F5.3,1X,F5.2,1X,F5.2,1X,F6.3,1X,F5.2,1X,F5.2,1X,I1)

C  Effective file loading

      open(unit=1,status='old',file=
     +'table1.dat')
      write(6,*) '....Loading file: table1.dat'
      do i__=1,725
        read(1,'(A63)')ar__
        read(ar__,1)SDSS,z,logLX,logLr,logR,logM,logLbl,n_logLbl
c    ..............Just test output...........
        write(6,1)SDSS,z,logLX,logLr,logR,logM,logLbl,n_logLbl
c    .......End.of.Just test output...........
      end do
      close(1)

C=============================================================================
      stop
      end