Classes | |
class | TupleEx2 |
Simple algorithm for advanced N-Tuple columns. More... | |
Functions | |
def | configure |
job configuration | |
Variables | |
string | __author__ = 'Vanya BELYAEV Ivan.Belyaev@lapp.in2p3.fr' |
Rndm = GaudiPython.gbl.Rndm | |
Math = GaudiPython.gbl.ROOT.Math | |
SUCCESS = GaudiPython.SUCCESS | |
tuple | gaudi = GaudiPython.AppMgr() |
The actual job execution. |
def TupleEx2::configure | ( | gaudi = None |
) |
job configuration
Configuration of the job
Definition at line 157 of file TupleEx2.py.
00157 : 00158 """ 00159 Configuration of the job 00160 """ 00161 00162 if not gaudi : gaudi = GaudiPython.AppMgr() 00163 00164 gaudi.JobOptionsType = 'NONE' 00165 gaudi.EvtSel = 'NONE' 00166 gaudi.HistogramPersistency = 'ROOT' 00167 00168 gaudi.ExtSvc += ["NTupleSvc" ] 00169 00170 ntSvc = gaudi.service('NTupleSvc') 00171 ntSvc.Output = [ "MYLUN DATAFILE='TupleEx2.root' OPT='NEW' TYP='ROOT'" ] 00172 00173 gaudi.config() 00174 00175 gaudi.DLLs = [ 'GaudiAlg', 'RootHistCnv', ] 00176 00177 alg = TupleEx2() 00178 gaudi.setAlgorithms( [alg] ) 00179 00180 # configure the properties 00181 alg.NTupleLUN = 'MYLUN' 00182 00183 return SUCCESS 00184 00185 00186 # ============================================================================= ## The actual job execution
string TupleEx2::__author__ = 'Vanya BELYAEV Ivan.Belyaev@lapp.in2p3.fr' [static] |
Definition at line 24 of file TupleEx2.py.
TupleEx2::Rndm = GaudiPython.gbl.Rndm [static] |
Definition at line 29 of file TupleEx2.py.
TupleEx2::Math = GaudiPython.gbl.ROOT.Math [static] |
Definition at line 30 of file TupleEx2.py.
TupleEx2::SUCCESS = GaudiPython.SUCCESS [static] |
Definition at line 31 of file TupleEx2.py.
tuple TupleEx2::gaudi = GaudiPython.AppMgr() [static] |
The actual job execution.
Definition at line 193 of file TupleEx2.py.