Classes | |
class | plotIbdBasics |
Functions | |
def | configure |
def | run |
Variables | |
list | __all__ = ['plotIbdBasics'] |
int | TH1F = 1 |
int | TH1D = 1 |
int | TH2F = 2 |
int | TH2D = 2 |
int | TH3F = 3 |
int | TH3D = 3 |
def chkIBD::__init__::configure | ( | ) |
Definition at line 718 of file __init__.py.
00718 : 00719 from DetHelpers.DetHelpersConf import CoordSysSvc 00720 # from GaudiSvc.GaudiSvcConf import THistSvc 00721 # from GaudiSvc.GaudiSvcConf import DetectorDataSvc 00722 from StatisticsSvc.StatisticsSvcConf import StatisticsSvc 00723 statsSvc = StatisticsSvc() 00724 statsSvc.Output ={"file1":"IbdBasicPlots.root"} 00725 00726 # histsvc = THistSvc() 00727 # histsvc.Output = ["file1 DATAFILE='IbdBasicPlots.root' OPT='RECREATE' TYP='ROOT' "] 00728 00729 coorSvc = CoordSysSvc() 00730 coorSvc.OutputLevel = 1 00731 00732 from Gaudi.Configuration import ApplicationMgr 00733 theApp = ApplicationMgr() 00734 theApp.ExtSvc.append(coorSvc) 00735 00736 return 00737 def run(app):
def chkIBD::__init__::run | ( | app | ) |
Configure and add this algorithm to job
Definition at line 738 of file __init__.py.
00738 : 00739 '''Configure and add this algorithm to job''' 00740 # from Gaudi.Configuration import ApplicationMgr 00741 # app = ApplicationMgr() 00742 # app.ExtSvc += ["THistSvc"] 00743 app.ExtSvc += ["StatisticsSvc"] 00744 plotBasics = plotIbdBasics("myBasics") 00745 app.addAlgorithm(plotBasics) 00746 pass pass
list chkIBD::__init__::__all__ = ['plotIbdBasics'] [static] |
Definition at line 6 of file __init__.py.
int chkIBD::__init__::TH1F = 1 [static] |
Definition at line 15 of file __init__.py.
int chkIBD::__init__::TH1D = 1 [static] |
Definition at line 16 of file __init__.py.
int chkIBD::__init__::TH2F = 2 [static] |
Definition at line 17 of file __init__.py.
int chkIBD::__init__::TH2D = 2 [static] |
Definition at line 18 of file __init__.py.
int chkIBD::__init__::TH3F = 3 [static] |
Definition at line 19 of file __init__.py.
int chkIBD::__init__::TH3D = 3 [static] |
Definition at line 20 of file __init__.py.