FORTRAN Generation
()

Conversion of standardized ReadMe file for catalog 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 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/A+A/587/A160   3.6um S4G Galactic bars characterization   (Diaz-Garcia+, 2016)
*================================================================================
*Characterization of galactic bars from 3.6um S4G imaging.
*    Diaz-Garcia S., Salo H., Laurikainen E., Herrera-Endoqui M.
*    <Astron. Astrophys. 587, A160 (2016)>
*    =2016A&A...587A.160D        (SIMBAD/NED BibCode)
C=============================================================================

C  Internal variables

      integer*4 i__

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

C  Declarations for 'rfp/*'	! *Radial force profiles of 1345 non-highly
                                 inclined disk S4G galaxies

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

      real*4        R           ! (arcsec) Galactocentric radius
      real*8        QT          ! Radial profile of the normalized tangential
*                                   force
      real*8        e_QT1       ! [] Uncertainty on the radial profile of the
*                                   normalized tangential force associated with a
*                                   thicker disk in de Grijs/Speltincx relation
      real*8        e_QT2       ! [] Uncertainty on the radial profile of the
*                                   normalized tangential force associated with a
*                                   thinner disk in de Grijs/Speltincx relation
      real*8        QThcor      ! ?=-999.999 Halo-corrected radial profile of
*                                   the normalized tangential force
      real*8        QTbar       ! ?=-999.999 Bar-only radial profile of the
*                                   normalized tangential force
      real*8        QTbarhcor   ! ?=-999.999 Halo-corrected bar-only radial
*                                   profile of the normalized tangential force
      real*8        QTS08       ! Radial profile of the normalized tangential
*                                   force using the relation from Speltincx et
*                                   al. (2008MNRAS.383..317S) for the disk
*                                   thickness calculation
      real*8        e_QTS081    ! [] Uncertainty on the radial profile of the
*                                   normalized tangential force associated with a
*                                   thicker disk in the relation from
*                                   Speltincx et al. (2008MNRAS.383..317S)
      real*8        e_QTS082    ! [] Uncertainty on the radial profile of the
*                                   normalized tangential force associated with a
*                                   thinner disk in the relation from
*                                   Speltincx et al. (2008MNRAS.383..317S)
      real*8        phi         ! (deg) Phase of m=2 Fourier amplitude
      real*8        A2          ! Normalized m = 2 Fourier density amplitude
      real*8        A4          ! Normalized m = 4 Fourier density amplitude
      real*8        A6          ! Normalized m = 6 Fourier density amplitude
      real*8        A8          ! Normalized m = 8 Fourier density amplitude

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

C  Loading file 'rfp/*'	! *Radial force profiles of 1345 non-highly
*                                 inclined disk S4G galaxies

C  Format for file interpretation

    1 format(
     +  F6.2,3X,F7.3,2X,F8.3,2X,F8.3,2X,F8.3,2X,F8.3,2X,F8.3,3X,F7.3,
     +  2X,F8.3,2X,F8.3,1X,F7.2,2X,F8.3,2X,F8.3,2X,F8.3,2X,F8.3)

C  Effective file loading

      open(unit=1,status='old',file=
     +'J/A+A/587/A160/rfp/*')
      write(6,*) '....Loading file: rfp/*'
      do i__=1,1345
        read(1,'(A144)')ar__
        read(ar__,1)
     +  R,QT,e_QT1,e_QT2,QThcor,QTbar,QTbarhcor,QTS08,e_QTS081,
     +  e_QTS082,phi,A2,A4,A6,A8
c    ..............Just test output...........
        write(6,1)
     +  R,QT,e_QT1,e_QT2,QThcor,QTbar,QTbarhcor,QTS08,e_QTS081,
     +  e_QTS082,phi,A2,A4,A6,A8
c    .......End.of.Just test output...........
      end do
      close(1)

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