Classes | |
class | HistoEx1 |
Functions | |
def | configure |
Variables | |
string | __author__ = 'Vanya BELYAEV Ivan.Belyaev@lapp.in2p3.fr' |
SUCCESS = GaudiPython.SUCCESS | |
tuple | gaudi = GaudiPython.AppMgr() |
def HistoEx1::configure | ( | gaudi = None |
) |
Configuration of the job
Definition at line 68 of file HistoEx1.py.
00068 : 00069 """ Configuration of the job """ 00070 00071 import HistoEx 00072 00073 if not gaudi : gaudi = GaudiPython.AppMgr() 00074 00075 HistoEx.configure( gaudi ) 00076 00077 alg = HistoEx1('HistoEx1') 00078 gaudi.addAlgorithm( alg ) 00079 00080 alg.HistoPrint = True 00081 00082 return SUCCESS 00083 00084 00085 # ============================================================================= 00086 # The actual job excution 00087 # ============================================================================= if '__main__' == __name__ :
string HistoEx1::__author__ = 'Vanya BELYAEV Ivan.Belyaev@lapp.in2p3.fr' [static] |
Definition at line 16 of file HistoEx1.py.
HistoEx1::SUCCESS = GaudiPython.SUCCESS [static] |
Definition at line 23 of file HistoEx1.py.
tuple HistoEx1::gaudi = GaudiPython.AppMgr() [static] |
Definition at line 90 of file HistoEx1.py.