FORTRAN Generation
(/./ftp/cats/J/MNRAS/471/5025)

Conversion of standardized ReadMe file for file /./ftp/cats/J/MNRAS/471/5025 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/MNRAS/471/5025    ExoMol line lists for ^28^SiH_4_             (Owens+, 2017)
*================================================================================
*ExoMol line lists.
*XXII. The rotation-vibration spectrum of silane up to 1200 K.
*    Owens A., Yachmenev A., Thiel W., Tennyson J.,  Yurchenko S.N.
*    <Mon. Not. R. Astron. Soc. 471, 5025 (2017)>
*    =2017MNRAS.471.5025O        (SIMBAD/NED BibCode)
C=============================================================================

C  Internal variables

      integer*4 i__

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

C  Declarations for 'sih4_e42.dat'	! Labelled rovibrational states

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

      integer*8     i           ! State ID, non-negative integer index
*                                   starting at 1
      real*8        E           ! (cm-1) State energy term value in cm^-1^
      integer*4     g           ! Total state degeneracy
      integer*4     J           ! [0/50] J-quantum number J is the total angular
*                                   momentum excluding nuclear spin
      integer*4     G_1         ! [1/5] Total symmetry in Td(M),
*                                   Gamma = A1, A2, E, F1, F2
      integer*4     v1          ! [0/10] Local mode vibrational quantum number
      integer*4     v2          ! [0/10] Local mode vibrational QN
      integer*4     v3          ! [0/10] Local mode vibrational QN
      integer*4     v4          ! [0/10] Local mode vibrational QN
      integer*4     v5          ! [0/20] Local mode vibrational QN
      integer*4     v6          ! [0/20] Local mode vibrational QN
      integer*4     v7          ! [0/20] Local mode vibrational QN
      integer*4     v8          ! [0/20] Local mode vibrational QN
      integer*4     v9          ! [0/20] Local mode vibrational QN
      integer*4     Gv          ! [1/5]  Td(M) vibrational symmetry Gamma(v)
      integer*4     J1          ! [0/50] Total angular momentum quantum number
      integer*4     K           ! [0/42] Projection of J on axis of molecular
*                                   symmetry
      integer*4     Pr          ! [0/1]  Rotational parity tau(rot)
      integer*4     Grot        ! [1/5]  Td(M) rotational symmetry c(r)
      real*4        C2          ! [0.0/1.0000] Square of the largest coefficient

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

C  Declarations for 'trans/*'	! *Transition files (Einstein coefficients, 1/s)
                                 divided into 100 cm-1 frequency pieces.
                                 (TOTAL SIZE: 558G)

      integer*4 nr__1
      parameter (nr__1=50)	! Number of records
      character*36 ar__1  	! Full-size record

      integer*8     i_          ! Upper state ID
      integer*8     i__1        ! Lower state ID
      real*4        A           ! (s-1) Einstein A-coefficient of the transition

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

C  Loading file 'sih4_e42.dat'	! Labelled rovibrational states

C  Format for file interpretation

    1 format(
     +  I12,1X,F12.6,1X,I6,1X,I7,I5,3X,I3,1X,I3,1X,I3,1X,I3,1X,I3,1X,
     +  I3,1X,I3,1X,I3,1X,I3,1X,I4,4X,I3,2X,I2,3X,I1,1X,I3,1X,F6.2)

C  Effective file loading

      open(unit=1,status='old',file=
     +'sih4_e42.dat')
      write(6,*) '....Loading file: sih4_e42.dat'
      do i__=1,7086727
        read(1,'(A114)')ar__
        read(ar__,1)
     +  i,E,g,J,G_1,v1,v2,v3,v4,v5,v6,v7,v8,v9,Gv,J1,K,Pr,Grot,C2
c    ..............Just test output...........
        write(6,1)
     +  i,E,g,J,G_1,v1,v2,v3,v4,v5,v6,v7,v8,v9,Gv,J1,K,Pr,Grot,C2
c    .......End.of.Just test output...........
      end do
      close(1)

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

C  Loading file 'trans/*'	! *Transition files (Einstein coefficients, 1/s)
*                                 divided into 100 cm-1 frequency pieces.
*                                 (TOTAL SIZE: 558G)

C  Format for file interpretation

    2 format(I12,1X,I12,1X,E10.4)

C  Effective file loading

      open(unit=1,status='old',file=
     +'trans/*')
      write(6,*) '....Loading file: trans/*'
      do i__=1,50
        read(1,'(A36)')ar__1
        read(ar__1,2)i_,i__1,A
c    ..............Just test output...........
        write(6,2)i_,i__1,A
c    .......End.of.Just test output...........
      end do
      close(1)

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