This file is indexed.

/usr/lib/python2.7/dist-packages/PyMca/EPDL97/__init__.py is in pymca 4.7.1+dfsg-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
"""
This modules allow to parse the Evaluated Photon Data Library files.

The modules to use are:

EADLParser
EPDL97Parser

The converted files used by PyMca can be obtained using the scripts:

GenerateEADLBindingEnergies.py
GenerateEADLShellConstants.py
GenerateEADLShellNonradiativeRates.py
GenerateEADLShellRadiativeRates.py
GenerateEPDL97CrossSections.py
GenerateEPDL97TotalCrossSections.py

Those scripts can be found in your EPDL97 installation directory:

import os
from PyMca import EPDL97
print(os.path.dirname(EPDL97.__file__))

"""
__author__ = "V.A. Sole - ESRF Software Group"
__version__ = '1.0'

# The parsing modules
# force the import here in order to see the available
# modules when doing from PyMca import EADL97
# followed by dir(EADL97) in an interactive session.
from . import EADLParser, EADLSubshells, EPDL97Parser