Classes | |
class | plotIbdBasics |
Functions | |
def | configure |
def | run |
Variables | |
list | __all__ = ['plotIbdBasics'] |
int | TH1F = 1 |
int | TH1D = 1 |
int | TH2F = 2 |
int | TH2D = 2 |
def chkIBD15::__init__::configure | ( | ) |
Definition at line 353 of file __init__.py.
00353 : 00354 from DetHelpers.DetHelpersConf import CoordSysSvc 00355 from GaudiSvc.GaudiSvcConf import THistSvc 00356 # from GaudiSvc.GaudiSvcConf import DetectorDataSvc 00357 00358 histsvc = THistSvc() 00359 histsvc.Output = ["file1 DATAFILE='IbdBasicPlots.root' OPT='RECREATE' TYP='ROOT' "] 00360 00361 coorSvc = CoordSysSvc() 00362 coorSvc.OutputLevel = 1 00363 00364 from Gaudi.Configuration import ApplicationMgr 00365 theApp = ApplicationMgr() 00366 theApp.ExtSvc.append(coorSvc) 00367 00368 return 00369 def run(app):
def chkIBD15::__init__::run | ( | app | ) |
Configure and add this algorithm to job
Definition at line 370 of file __init__.py.
00370 : 00371 '''Configure and add this algorithm to job''' 00372 # from Gaudi.Configuration import ApplicationMgr 00373 # app = ApplicationMgr() 00374 app.ExtSvc += ["THistSvc"] 00375 plotBasics = plotIbdBasics("myBasics") 00376 app.addAlgorithm(plotBasics) 00377 pass pass
list chkIBD15::__init__::__all__ = ['plotIbdBasics'] [static] |
Definition at line 6 of file __init__.py.
int chkIBD15::__init__::TH1F = 1 [static] |
Definition at line 15 of file __init__.py.
int chkIBD15::__init__::TH1D = 1 [static] |
Definition at line 16 of file __init__.py.
int chkIBD15::__init__::TH2F = 2 [static] |
Definition at line 17 of file __init__.py.
int chkIBD15::__init__::TH2D = 2 [static] |
Definition at line 18 of file __init__.py.