FORTRAN Generation
(/./ftp/cats/J/A_A/614/A48)

Conversion of standardized ReadMe file for file /./ftp/cats/J/A_A/614/A48 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-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__=--2147483648.)  	! NULL real number
      parameter  (iNULL__=(-2147483647-1))	! NULL int  number
      integer    idig			! testing NULL number

C=============================================================================
Cat. J/A+A/614/A48   Continuous rise of bulges out of galactic disks   (Breda+, 2018)
*================================================================================
*The continuous rise of bulges out of galactic disks.
*    Breda I., Papaderos P.
*    <Astron. Astrophys. 614, A48 (2018)>
*    =2018A&A...614A..48B        (SIMBAD/NED BibCode)
C=============================================================================

C  Internal variables

      integer*4 i__

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

C  Declarations for 'ltgs.dat'	! Photometric, evolutionary and physical quantities
                                for the galaxy sample under study (table C1)

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

      character*12  Name       (nr__) ! Galaxy name (name)
      real*4        Dist       (nr__) ! (Mpc) Assumed distance (distance)
      real*8        RB         (nr__) ! (kpc) Isophotal radius of the bulge (B_r_Riso)
      real*8        logM_T     (nr__) ! ([Msun]) logarithm of the total stellar mass
*                                       (T_logMnow) (1)
      real*8        logM_B     (nr__) ! ([Msun]) logarithm of the present-day stellar mass
*                                       within RB (B_logMnow) (1)
      real*8        v_t_B_M    (nr__) ! (Gyr) Mass-weighted stellar age of the bulge
*                                       (B_tMass) (1)
      real*8        s__t_B_M   (nr__) ! (Gyr) Dispersion of <t*B>M (B_tMass_E) (1)
      real*8        v_t_D_M    (nr__) ! (Gyr) Mass-weighted stellar age of the disk
*                                       (D_tMass) (1)
      real*8        s__t_D_M   (nr__) ! (Gyr) Dispersion of <t*D>M (D_tMass_E) (1)
      real*8        v_Z_B_M    (nr__) ! (Sun) Mass-weighted stellar metallicity of the
*                                       bulge (B_Zmass) (1)
      real*8        s__Z_B_M   (nr__) ! (Sun) Dispersion of <Z*B>M (B_Zmass_E) (1)
      real*8        v_Z_D_M    (nr__) ! (Sun) Mass-weighted stellar metallicity of the
*                                       disk (D_Zmass) (1)
      real*8        s__Z_D_M   (nr__) ! (Sun) Dispersion of <Z*D>M (D_Zmass_E) (1)
      real*8        logS_B     (nr__) ! ([Msun/kpc2]) logarithm of the mean stellar mass surface
*                                       density in the bulge (B_logSSDensity) (1)
      real*8        v_md9G_    (nr__) ! (mag) Mean <{delta}{mu}9G> (rmag) within RB
*                                       (DeltaMu_Rb)
*Note (1): Quantities were obtained from spectral modeling with STARLIGHT
*   of CALIFA V500 data with the Z4 SSP library and refer to the present-day
*   M* (cf. Sect. 2.2.2).

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

C  Loading file 'ltgs.dat'	! Photometric, evolutionary and physical quantities
*                                for the galaxy sample under study (table C1)

C  Format for file interpretation

    1 format(
     +  A12,1X,F5.1,1X,F8.6,1X,F8.5,1X,F8.5,1X,F8.5,1X,F8.6,1X,F8.5,
     +  1X,F8.6,1X,F8.6,1X,F8.6,1X,F8.6,1X,F8.6,1X,F7.5,1X,F9.6)

C  Effective file loading

      open(unit=1,status='old',file=
     +'ltgs.dat')
      write(6,*) '....Loading file: ltgs.dat'
      do i__=1,135
        read(1,'(A135)')ar__
        read(ar__,1)
     +  Name(i__),Dist(i__),RB(i__),logM_T(i__),logM_B(i__),
     +  v_t_B_M(i__),s__t_B_M(i__),v_t_D_M(i__),s__t_D_M(i__),
     +  v_Z_B_M(i__),s__Z_B_M(i__),v_Z_D_M(i__),s__Z_D_M(i__),
     +  logS_B(i__),v_md9G_(i__)
c    ..............Just test output...........
        write(6,1)
     +  Name(i__),Dist(i__),RB(i__),logM_T(i__),logM_B(i__),
     +  v_t_B_M(i__),s__t_B_M(i__),v_t_D_M(i__),s__t_D_M(i__),
     +  v_Z_B_M(i__),s__Z_B_M(i__),v_Z_D_M(i__),s__Z_D_M(i__),
     +  logS_B(i__),v_md9G_(i__)
c    .......End.of.Just test output...........
      end do
      close(1)

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