FORTRAN Generation
(/./ftp/cats/J/A_AS/113/579)

Conversion of standardized ReadMe file for file /./ftp/cats/J/A_AS/113/579 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-18
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+AS/113/579               Stark broadening                  (Shoening+, 1995)
*================================================================================
*Stark broadening of the NV 6f,g,h-7f,g,h,i line complex
*     SCHOENING T.
*    <Astron. Astrophys. Suppl. Ser. 113, 579 (1995)>
*    =1995A&AS..113..579S      (SIMBAD/NED BibCode)
C=============================================================================

C  Internal variables

      integer*4 i__

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

C  Declarations for 'table1'	! e- and H+ perturbers (+ Doppler + Radiation)

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

      real*4        Ne          ! (cm-3) Electron density
      real*4        DeltaLambda0 ! (0.1nm) Wavelength of intensity maximum (1)
      real*4        deltaLambda ! (0.1nm) Detuning from intensity maximum (1)
      real*4        S2          ! (Hz-1) Intensity (Temperature T= 2.10+4 K) (2)
      real*4        S4          ! (Hz-1) Intensity (Temperature T= 4.10+4 K) (2)
      real*4        S8          ! (Hz-1) Intensity (Temperature T= 8.10+4 K) (2)
      real*4        S16         ! (Hz-1) Intensity (Temperature T= 16.10+4 K) (2)
*Note (1): Delta lambda = Delta lambda0 + delta lambda
*     where Delta lambda denotes the wavelength detuning from line centre
*     (6h-7i at 494.5 nm), Delta lambda0 the wavelength separation
*     (relative to the line centre) of prominent intensity maxima and
*     delta lambda the detuning from the nearest intensity maximum.
*Note (2): Normalized intensity in frequency units, e- and H+ perturbers
*     (with thermal Doppler broadening and radiative damping).

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

C  Declarations for 'table2'	! e- and H+ perturbers (Stark only)

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

      real*4        Ne_1        ! (cm-3) Electron density
      real*4        DeltaLambda0_1 ! (0.1nm) Wavelength of intensity maximum (1)
      real*4        deltaLambda_1 ! (0.1nm) Detuning from intensity maximum (1)
      real*4        F2          ! (10/nm) Intensity (Temperature T= 2.10+4K) (2)
      real*4        F4          ! (10/nm) Intensity (Temperature T= 4.10+4K) (2)
      real*4        F8          ! (10/nm) Intensity (Temperature T= 8.10+4K) (2)
      real*4        F16         ! (10/nm) Intensity (Temperature T= 16.10+4K) (2)
*Note (1): Delta lambda = Delta lambda0 + delta lambda
*     where Delta lambda denotes the wavelength detuning from line centre
*     (6h-7i at 494.5 nm), Delta lambda0 the wavelength separation
*     (relative to the line centre) of prominent intensity maxima and
*     delta lambda the detuning from the nearest intensity maximum.
*Note (2): Normalized intensity in wavelength units, e- and H+ perturbers
*     (Stark only).

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

C  Loading file 'table1'	! e- and H+ perturbers (+ Doppler + Radiation)

C  Format for file interpretation

    1 format(E11.3,E11.3,E11.3,1X,E11.3,E11.3,E11.3,E11.3)

C  Effective file loading

      open(unit=1,status='old',file=
     +'table1')
      write(6,*) '....Loading file: table1'
      do i__=1,747
        read(1,'(A78)')ar__
        read(ar__,1)Ne,DeltaLambda0,deltaLambda,S2,S4,S8,S16
c    ..............Just test output...........
        write(6,1)Ne,DeltaLambda0,deltaLambda,S2,S4,S8,S16
c    .......End.of.Just test output...........
      end do
      close(1)

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

C  Loading file 'table2'	! e- and H+ perturbers (Stark only)

C  Format for file interpretation

    2 format(E11.3,E11.3,E11.3,1X,E11.3,E11.3,E11.3,E11.3)

C  Effective file loading

      open(unit=1,status='old',file=
     +'table2')
      write(6,*) '....Loading file: table2'
      do i__=1,345
        read(1,'(A78)')ar__1
        read(ar__1,2)Ne_1,DeltaLambda0_1,deltaLambda_1,F2,F4,F8,F16
c    ..............Just test output...........
        write(6,2)Ne_1,DeltaLambda0_1,deltaLambda_1,F2,F4,F8,F16
c    .......End.of.Just test output...........
      end do
      close(1)

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