FORTRAN Generation
(/./ftp/cats/J/MNRAS/407/2207)

Conversion of standardized ReadMe file for file /./ftp/cats/J/MNRAS/407/2207 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.5, on 2013-Jun-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__=-1.e37)     	! NULL real number
      parameter  (iNULL__=-2147483647)	! NULL int  number

C=============================================================================
Cat. J/MNRAS/407/2207        Group of early-type galaxies       (Fraix-Burnet+, 2010)
*================================================================================
*Structures in the fundamental plane of early-type galaxies.
*    Fraix-Burnet D., Dugue M., Chattopadhyay T., Chattopadhyay A.K., Davoust E.
*   <Mon. Not. R. Astron. Soc., 407, 2207-2222 (2010)>
*   =2010MNRAS.407.2207F
C=============================================================================

C  Internal variables

      integer*4 i__

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

C  Declarations for 'tablec1.dat'	! List of galaxies for each group

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

      character*2   Group      (nr__) ! Group designation (C1-C7) (1)
      character*15  SMAC       (nr__) ! Galaxy name (2)
*Note (1): See section 3.2 and Figure B1 for further details.
*          Figure B1: Cladogram obtained with four parameters. It is a majority
*          rule consensus of 986 equally parsimonious trees. The branches are 
*          coloured according to the value of Mg_2_ (from dark blue to yellow 
*          through green as Mg_2_ increases). The outer annulus is formed by the
*          names of the galaxies, with colours according to the group (numbered
*          from C1 to C7) as detailed in Table c1.
*Note (2): From Hudson et al., 2001, Cat. J/MNRAS/327/265.

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

C  Loading file 'tablec1.dat'	! List of galaxies for each group

C  Format for file interpretation

    1 format(A2,1X,A15)

C  Effective file loading

      open(unit=1,file='tablec1.dat', status='old')
      write(6,*) '....Loading file: tablec1.dat'
      do i__=1,699
        read(1,'(A18)')ar__
        read(ar__,1)Group(i__),SMAC(i__)
c    ..............Just test output...........
        write(6,1)Group(i__),SMAC(i__)
c    .......End.of.Just test output...........
      end do
      close(1)

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