ATLAS Offline Software
Loading...
Searching...
No Matches
python.Dso Namespace Reference

Functions

 _libName (lib)

Variables

str __version__ = "$Revision: 1.12 $"
str __author__ = "Sebastien Binet <binet@cern.ch>"
str __doc__
list __all__
dict _aliases
 data -------------------------------------------------------------------—
dict _typedefs

Function Documentation

◆ _libName()

python.Dso._libName ( lib)
protected

Definition at line 15 of file Tools/PyUtils/python/Dso.py.

15def _libName(lib):
16 import platform
17 if platform.system() == "Linux":
18 if lib[:3] != "lib": lib = "lib"+lib
19 if lib[-3:] != ".so": lib = lib+".so"
20 return lib
21

Variable Documentation

◆ __all__

list python.Dso.__all__
private
Initial value:
1= [
2 'registry',
3 ]

Definition at line 17 of file Control/AthenaServices/python/Dso.py.

◆ __author__

str python.Dso.__author__ = "Sebastien Binet <binet@cern.ch>"
private

Definition at line 11 of file Control/AthenaServices/python/Dso.py.

◆ __doc__

str python.Dso.__doc__
private
Initial value:
1= """\
2simple interface to the rootmap files to easily locate reflex dictionaries \
3(and load them)
4"""

Definition at line 12 of file Control/AthenaServices/python/Dso.py.

◆ __version__

str python.Dso.__version__ = "$Revision: 1.12 $"
private

Definition at line 10 of file Control/AthenaServices/python/Dso.py.

◆ _aliases

dict python.Dso._aliases
protected
Initial value:
1= {
2 'ElementLinkInt_p1' : 'ElementLink_p1<unsigned int>',
3 'basic_string<char>' : 'string',
4 'std::basic_string<char>' : 'string',
5 'vector<basic_string<char> >' : 'vector<string>',
6
7 'INavigable4MomentumCollection' : 'DataVector<INavigable4Momentum>',
8 'IParticleContainer' : 'DataVector<IParticle>',
9 }

data -------------------------------------------------------------------—

Definition at line 23 of file Tools/PyUtils/python/Dso.py.

◆ _typedefs

dict python.Dso._typedefs
protected
Initial value:
1= {
2
3 'INavigable4MomentumCollection' : 'DataVector<INavigable4Momentum>',
4 'IParticleContainer' : 'DataVector<IParticle>',
5 }

Definition at line 32 of file Tools/PyUtils/python/Dso.py.