FORTRAN Generation
(/./ftp/cats/J/A_A/520/A62)

Conversion of standardized ReadMe file for file /./ftp/cats/J/A_A/520/A62 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-19
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/520/A62       Radio-optical scrutiny of compact AGN    (Arshakian+, 2010)
*================================================================================
*Radio-optical scrutiny of compact AGN: Correlations between properties of
*pc-scale jets and optical nuclear emission.
*    Arshakian T.G., Torrealba J., Chavushyan V.H., Ros E., Lister M.L.,
*    Cruz-Gonzalez I., Zensus J.A.
*   <Astron. Astrophys. 520, A62 (2010)>
*   =2010A&A...520A..62A
C=============================================================================

C  Internal variables

      integer*4 i__

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

C  Declarations for 'table3.dat'	! Optical and radio parameters of 135 AGN

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

      character*8   Name        ! The name of the object (HHMM+DDd)
      character*2   Type        ! Spectral type (1)
      real*4        logFb       ! ([Jy]) ? Logarithm of the nuclear optical flux
      real*4        e_logFb     ! ([Jy]) ? Logarithm of the error of nuclear optical flux
      real*4        logF510     ! ([W/Hz]) ? Logarithm of the nuclear optical luminosity
*                                 at 5100{AA}
      real*8        S151        ! (Jy) Flux density at 151MHz
      real*4        logQj       ! ([W]) ? Logarithm of the jet power
      real*4        betaa       ! ? Apparent speed of the jet {beta}_app_
*                                 (relative to the speed of the light)
      real*4        e_betaa     ! ? 1 sigma error of the apparent speed of the jet
*                                 (relative to the speed of the light)
*Note (1): Spectral type as follows:
*     Q = quasar
*    BL = BL Lac object
*     G = radio galaxy
*     U = unclassified object

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

C  Loading file 'table3.dat'	! Optical and radio parameters of 135 AGN

C  Format for file interpretation

    1 format(
     +  A8,1X,A2,1X,F5.2,1X,F4.2,1X,F5.2,1X,F7.2,1X,F6.2,1X,F5.2,1X,
     +  F4.2)

C  Effective file loading

      open(unit=1,status='old',file=
     +'table3.dat')
      write(6,*) '....Loading file: table3.dat'
      do i__=1,135
        read(1,'(A54)')ar__
        read(ar__,1)
     +  Name,Type,logFb,e_logFb,logF510,S151,logQj,betaa,e_betaa
        if(ar__(13:17) .EQ. '') logFb = rNULL__
        if(ar__(19:22) .EQ. '') e_logFb = rNULL__
        if(ar__(24:28) .EQ. '') logF510 = rNULL__
        if(ar__(38:43) .EQ. '') logQj = rNULL__
        if(ar__(45:49) .EQ. '') betaa = rNULL__
        if(ar__(51:54) .EQ. '') e_betaa = rNULL__
c    ..............Just test output...........
        write(6,1)
     +  Name,Type,logFb,e_logFb,logF510,S151,logQj,betaa,e_betaa
c    .......End.of.Just test output...........
      end do
      close(1)

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