Classes | |
class | HistoEx2 |
Functions | |
def | configure |
Variables | |
string | __author__ = 'Vanya BELYAEV ibelyaev@physics.syr.edu' |
Rndm = GaudiPython.gbl.Rndm | |
SUCCESS = GaudiPython.SUCCESS | |
tuple | gaudi = GaudiPython.AppMgr() |
def HistoEx2::configure | ( | gaudi = None |
) |
Configuration of the job
Definition at line 56 of file HistoEx2.py.
00056 : 00057 """ Configuration of the job """ 00058 00059 import HistoEx1 00060 00061 if not gaudi : gaudi = GaudiPython.AppMgr() 00062 00063 HistoEx1.configure( gaudi ) 00064 00065 alg = HistoEx2('HistoEx2') 00066 gaudi.addAlgorithm( alg ) 00067 00068 alg.HistoPrint = True 00069 00070 return SUCCESS 00071 00072 00073 # ============================================================================= 00074 # The actual job excution 00075 # =============================================================================
string HistoEx2::__author__ = 'Vanya BELYAEV ibelyaev@physics.syr.edu' [static] |
Definition at line 16 of file HistoEx2.py.
HistoEx2::Rndm = GaudiPython.gbl.Rndm [static] |
Definition at line 23 of file HistoEx2.py.
HistoEx2::SUCCESS = GaudiPython.SUCCESS [static] |
Definition at line 24 of file HistoEx2.py.
tuple HistoEx2::gaudi = GaudiPython.AppMgr() [static] |
Definition at line 78 of file HistoEx2.py.