Loading [MathJax]/extensions/tex2jax.js
The Gaudi Framework  v31r0 (aeb156f0)
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
__init__.py
Go to the documentation of this file.
1 # File: GaudiPython/__init__.py
2 # Author: Pere Mato (pere.mato@cern.ch)
3 """
4  GaudiPython main module.
5  It makes available a number of APIs and classes to be used by end user scripts
6 
7  Usage:
8  import GaudiPython
9 """
10 
11 # ensure that we (and the subprocesses) use the C standard localization
12 import os
13 if os.environ.get('LC_ALL') != 'C':
14  print '# setting LC_ALL to "C"'
15  os.environ['LC_ALL'] = 'C'
16 
17 from Bindings import *
18 from Pythonizations import *