FORTRAN Generation
(/./ftp/cats/J/AJ/132/1023)

Conversion of standardized ReadMe file for file /./ftp/cats/J/AJ/132/1023 into FORTRAN code for loading all data files into arrays.

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-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/AJ/132/1023   U-band dropouts in Hubble Ultra Deep Field  (Wadadekar+, 2006)
*================================================================================
*Faint u-band dropouts in the WFPC2 parallels of the Hubble Ultra Deep Field.
*    Wadadekar Y., Casertano S., De Mello D.
*   <Astron. J., 132, 1023-1034 (2006)>
*   =2006AJ....132.1023W
C=============================================================================

C  Internal variables

      integer*4 i__

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

C  Declarations for 'table2.dat'	! U band dropouts

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

C  J2000 position composed of: RAdeg DEdeg
      real*8        RAdeg      (nr__) ! (deg) Right Ascension in decimal degrees (J2000)
      real*8        DEdeg      (nr__) ! (deg) Declination in decimal degrees (J2000)
      character*1   l_Umag     (nr__) ! Limit flag on Umag
      real*4        Umag       (nr__) ! (mag) The WFPC2/F300W band magnitude (1)
      real*4        Bmag       (nr__) ! (mag) The ACS/F435W band magnitude (1)
      real*4        Vmag       (nr__) ! (mag) The ACS/F606W band magnitude (1)
      real*4        imag       (nr__) ! (mag) The ACS/F775W band magnitude (1)
      integer*4     Class      (nr__) ! [1/6] Class (2)
      character*51  Comm       (nr__) ! Additional comments
*Note (1): The magnitudes listed are in the AB system.
*Note (2): Class as follows:
*      1 = single and compact (clump)
*      2 = double or multiple clumps (chain)
*      3 = a clump with a tail (tadpole)
*      4 = not compact but extended and fuzzy
*      5 = fuzzy extended and with a more organized disk-like structure
*      6 = not classified, very faint

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

C  Loading file 'table2.dat'	! U band dropouts

C  Format for file interpretation

    1 format(
     +  F9.6,1X,F10.6,1X,A1,F5.2,1X,F5.2,1X,F5.2,1X,F5.2,1X,I1,1X,A51)

C  Effective file loading

      open(unit=1,status='old',file=
     +'table2.dat')
      write(6,*) '....Loading file: table2.dat'
      do i__=1,125
        read(1,'(A99)')ar__
        read(ar__,1)
     +  RAdeg(i__),DEdeg(i__),l_Umag(i__),Umag(i__),Bmag(i__),
     +  Vmag(i__),imag(i__),Class(i__),Comm(i__)
c    ..............Just test output...........
        write(6,1)
     +  RAdeg(i__),DEdeg(i__),l_Umag(i__),Umag(i__),Bmag(i__),
     +  Vmag(i__),imag(i__),Class(i__),Comm(i__)
c    .......End.of.Just test output...........
      end do
      close(1)

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