The Gaudi Framework
v36r1 (3e2fb5a8)
__init__.py
Go to the documentation of this file.
1
13
"""
14
GaudiPython main module.
15
It makes available a number of APIs and classes to be used by end user scripts
16
17
Usage:
18
import GaudiPython
19
"""
20
from
__future__
import
absolute_import, print_function
21
22
# ensure that we (and the subprocesses) use the C standard localization
23
import
os
24
if
os.environ.get(
'LC_ALL'
) !=
'C'
:
25
print(
'# setting LC_ALL to "C"'
)
26
# !!!
27
os.environ[
'LC_ALL'
] =
'C'
28
29
from
.Bindings
import
*
30
from
.Pythonizations
import
*
GaudiPython
python
GaudiPython
__init__.py
Generated on Tue Sep 21 2021 12:27:37 for The Gaudi Framework by
1.8.18