FORTRAN Generation
(/./ftp/cats/J/ApJ/561/727)

Conversion of standardized ReadMe file for file /./ftp/cats/J/ApJ/561/727 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-16
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/561/727       BVI photometry in the Antennae galaxies       (Zhang+, 2001)
*================================================================================
*A multiwavelength study of the young star clusters and interstellar medium in
*the Antennae galaxies.
*    Zhang Q., Fall S.M., Whitmore B.C.
*   <Astrophys. J. 561, 727 (2001)>
*   =2001ApJ...561..727Z
C=============================================================================

C  Internal variables

      integer*4 i__

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

C  Declarations for 'table1.dat'	! Red clusters in the Antennae galaxies

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

      integer*4     v_ZFW2001_ (nr__) ! Cluster number
      real*4        oRA        (nr__) ! (arcsec) Right Ascension offset (1)
      real*4        oDE        (nr__) ! (arcsec) Declination offset (1)
      integer*4     Chip       (nr__) ! Chip number
      real*4        VMAG       (nr__) ! (mag) The absolute V band magnitude
      real*4        B_V        (nr__) ! (mag) ? The (B-V) color index
      real*4        V_I        (nr__) ! (mag) The (V-I) color index
      real*4        DelV1_6    (nr__) ! (mag) The {Delta}V_1-6_ parameter (2)
      integer*4     v_WS95_    (nr__) ! ? Whitmore & Schweizer (1995,
*                                    Cat. <J/AJ/109/960>) number (3)
*Note (1): Following the convention used in Whitmore & Schweizer (1995,
*     Cat. <J/AJ/109/960>) and Whitmore et al. (1999AJ....118.1551W), the
*     coordinates are the offsets from RA=12:01:52.97 and DE=-18:52:08.29
*     (J2000.0), near the center of NGC 4038.
*Note (2): The difference in V magnitudes measured in a 1-pixel and 6-pixel
*     radius aperture, which provides a rough determination of cluster size.
*     Objects with {Delta}V_1-6_<1.0 are likely to be cosmic rays.
*Note (3): Duplicated numbers are neighboring objects, generally because of
*     differences in spatial resolution between the cycle 2 and cycle 5
*     observations.

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

C  Loading file 'table1.dat'	! Red clusters in the Antennae galaxies

C  Format for file interpretation

    1 format(
     +  I2,1X,F6.2,1X,F6.2,1X,I1,1X,F5.2,1X,F4.2,1X,F4.2,1X,F4.2,1X,I3)

C  Effective file loading

      open(unit=1,status='old',file=
     +'table1.dat')
      write(6,*) '....Loading file: table1.dat'
      do i__=1,84
        read(1,'(A43)')ar__
        read(ar__,1)
     +  v_ZFW2001_(i__),oRA(i__),oDE(i__),Chip(i__),VMAG(i__),
     +  B_V(i__),V_I(i__),DelV1_6(i__),v_WS95_(i__)
        if(ar__(26:29) .EQ. '') B_V(i__) = rNULL__
        if(ar__(41:43) .EQ. '') v_WS95_(i__) = iNULL__
c    ..............Just test output...........
        write(6,1)
     +  v_ZFW2001_(i__),oRA(i__),oDE(i__),Chip(i__),VMAG(i__),
     +  B_V(i__),V_I(i__),DelV1_6(i__),v_WS95_(i__)
c    .......End.of.Just test output...........
      end do
      close(1)

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