FORTRAN Generation
(/./ftp/cats/J/ApJ/667/131)

Conversion of standardized ReadMe file for file /./ftp/cats/J/ApJ/667/131 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-Apr-20
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/667/131       Mass function of active black holes      (Greene+, 2007)
*================================================================================
*The mass function of active black holes in the Local Universe.
*    Greene J.E., Ho L.C.
*   <Astrophys. J., 667, 131-148 (2007)>
*   =2007ApJ...667..131G
C=============================================================================

C  Internal variables

      integer*4 i__

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

C  Declarations for 'table1.dat'	! The sample

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

      character*19  SDSS        ! Name (JHHMMSS.ss+DDMMSS.s)
      real*4        z           ! Redshift (from SDSS)
      integer*4     FWHMHa      ! (km/s) H{alpha} FWHM
      real*4        logLHa      ! ([10-7W]) H{alpha} luminosity
      real*4        logMBH      ! ([solMass]) Black hole mass (1)
*Note (1): M_BH_=(2.0^+0.4^_-0.3_)x10^6^(LHa)^0.55+/-0.02^(FWHMHa)^2.06+/-0.06^
*          where LHa is in 10^42^erg/s and FWHMHa is in 10^3^km/s
*          (Greene & Ho, 2005ApJ...630..122G)

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

C  Loading file 'table1.dat'	! The sample

C  Format for file interpretation

    1 format(A19,1X,F6.4,1X,I5,1X,F5.2,1X,F3.1)

C  Effective file loading

      open(unit=1,status='old',file=
     +'table1.dat')
      write(6,*) '....Loading file: table1.dat'
      do i__=1,8497
        read(1,'(A42)')ar__
        read(ar__,1)SDSS,z,FWHMHa,logLHa,logMBH
c    ..............Just test output...........
        write(6,1)SDSS,z,FWHMHa,logLHa,logMBH
c    .......End.of.Just test output...........
      end do
      close(1)

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