Classes | |
class | Counter |
Functions | |
def | configure |
Variables | |
string | __author__ = 'Vanya BELYAEV Ivan.Belyaev@lapp.in2p3.fr' |
Rndm = GaudiPython.gbl.Rndm | |
Numbers = Rndm.Numbers | |
SUCCESS = GaudiPython.SUCCESS | |
tuple | gaudi = GaudiPython.AppMgr() |
def CounterEx::configure | ( | gaudi = None |
) |
Configuration of the job
Definition at line 91 of file CounterEx.py.
00091 : 00092 """ Configuration of the job """ 00093 00094 if not gaudi : gaudi = GaudiPython.AppMgr() 00095 00096 gaudi.JobOptionsType = 'NONE' 00097 gaudi.EvtSel = 'NONE' 00098 00099 gaudi.config() 00100 00101 alg = Counter() 00102 gaudi.setAlgorithms( [alg] ) 00103 00104 # configure the properties 00105 alg.StatPrint = True 00106 00107 return SUCCESS 00108 00109 # ============================================================================= 00110 # The actual job excution 00111 # ============================================================================= if '__main__' == __name__ :
string CounterEx::__author__ = 'Vanya BELYAEV Ivan.Belyaev@lapp.in2p3.fr' [static] |
Definition at line 19 of file CounterEx.py.
CounterEx::Rndm = GaudiPython.gbl.Rndm [static] |
Definition at line 26 of file CounterEx.py.
CounterEx::Numbers = Rndm.Numbers [static] |
Definition at line 27 of file CounterEx.py.
CounterEx::SUCCESS = GaudiPython.SUCCESS [static] |
Definition at line 28 of file CounterEx.py.
tuple CounterEx::gaudi = GaudiPython.AppMgr() [static] |
Definition at line 114 of file CounterEx.py.