Conversion of standardized ReadMe file for
file /./ftp/cats/J/A_A/622/A167 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 2026-Sep-08
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/622/A167 Transition data of E1 transitions for PII (Rynkun+, 2019)
*================================================================================
*Theoretical investigation of energy levels and transition data for P II.
* Rynkun P., Radziute L., Gaigalas G., Jonsson P.
* <Astron. Astrophys. 622, A167 (2019)>
* =2019A&A...622A.167R (SIMBAD/NED BibCode)
C=============================================================================
C Internal variables
integer*4 i__
c - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
C Declarations for 'table5.dat' ! Transition data of E1 transitions for the PII ion
integer*4 nr__
parameter (nr__=1407) ! Number of records
character*109 ar__ ! Full-size record
integer*4 Ju ! J of upper level
character*1 pu ! Parity of upper level
character*23 ustate ! Label of upper level
integer*4 Jl ! J of lower level
character*1 pl ! Parity of lower level
character*23 lstate ! Label of lower level
integer*4 deltaE ! (cm-1) Transition energy
real*8 lambda ! (0.1nm) Wavelength of transition
real*4 A ! (s-1) Radiative transition probability in the
* length gauge
real*4 gf ! Weighted oscillator strength in the
* length gauge
real*4 dT ! Accuracy indicator, characterizing the
* uncertainty of the computed transition rates
* defined by Eq.(5) in the paper
C=============================================================================
C Loading file 'table5.dat' ! Transition data of E1 transitions for the PII ion
C Format for file interpretation
1 format(
+ I2,1X,A1,1X,A23,1X,I2,1X,A1,1X,A23,1X,I6,1X,F9.2,4X,E9.4,4X,
+ E9.4,4X,F5.3)
C Effective file loading
open(unit=1,status='old',file=
+'table5.dat')
write(6,*) '....Loading file: table5.dat'
do i__=1,1407
read(1,'(A109)')ar__
read(ar__,1)Ju,pu,ustate,Jl,pl,lstate,deltaE,lambda,A,gf,dT
c ..............Just test output...........
write(6,1)Ju,pu,ustate,Jl,pl,lstate,deltaE,lambda,A,gf,dT
c .......End.of.Just test output...........
end do
close(1)
C=============================================================================
stop
end