FORTRAN Generation
(/./ftp/cats/J/A_A/570/A106)

Conversion of standardized ReadMe file for file /./ftp/cats/J/A_A/570/A106 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-Jun-09
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/570/A106      VIPERS. Searching for cosmic voids       (Micheletti+, 2014)
*================================================================================
*The VIMOS Public Extragalactic Redshift Survey. Searching for cosmic voids.
*    Micheletti D., Hawken A., Iovino A.J., Granett B., Bolzonella M., Cappi A.,
*    Abbas U., Adami C., Arnouts S., Bel J., Bottini D., Branchini E., Coupon J.,
*    Cucciati O., Davidzon I., De Lucia G., de la Torre S., Fritz A.,
*    Franzetti P., Fumana M., Garilli B., Guzzo L., Ilbert O., Krywult J.,
*    Le Brun V., Le Fevre O., Maccagni D., Malek K., Marulli F., McCracken H.J.,
*    Polletta M., Pollo A., Schimd C., Scodeggio M., Tasca L.A.M., Tojeiro R.,
*    Vergani D., Zanichelli A., Burden A., Di Porto C., Marchetti A.,
*    Marinoni C., Mellier Y., Moutard T., Moscardini L., Nichol R.C.,
*    Peacock J.A., Percival W.J., Zamorani G.
*   <Astron. Astrophys. 570, A106 (2014)>
*   =2014A&A...570A.106M
C=============================================================================

C  Internal variables

      integer*4 i__

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

C  Declarations for 'void.dat'	! List of maximal spheres detected in VIPERS samples

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

C  J2000.0 position composed of: RAdeg DEdeg
      character*11  ID          ! ID of maximal sphere (Wx.VVVV.SSS) (1)
      real*4        r           ! (Mpc) [14/32] Maximal sphere radius
      real*8        RAdeg       ! (deg) Right ascension (J2000.0)
      real*8        DEdeg       ! (deg) Declination (J2000.0)
      real*4        z           ! [0.54/0.91] Redshift
      real*4        p_value     ! Detection significance value
*Note (1): The identification number (ID) of each maximal sphere is composed of:
*    the VIPERS field to which the maximal sphere belongs (W1 or W4); a
*    void index indicating to which void the sphere belongs (VVVV); a
*    sphere index SSS indicating the size rank of the sphere relative to
*    other maximal spheres within the same void. The complete ID has the
*    form Wx.VVVV.SSS.

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

C  Loading file 'void.dat'	! List of maximal spheres detected in VIPERS samples

C  Format for file interpretation

    1 format(A11,1X,F5.2,1X,F8.4,1X,F7.4,1X,F6.4,1X,E8.3)

C  Effective file loading

      open(unit=1,status='old',file=
     +'void.dat')
      write(6,*) '....Loading file: void.dat'
      do i__=1,388
        read(1,'(A50)')ar__
        read(ar__,1)ID,r,RAdeg,DEdeg,z,p_value
c    ..............Just test output...........
        write(6,1)ID,r,RAdeg,DEdeg,z,p_value
c    .......End.of.Just test output...........
      end do
      close(1)

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