Classes | |
class | DrawCapturePositionAlg |
Functions | |
def | configure |
def | run |
Variables | |
TCanvas = gbl.TCanvas |
def DrawACUNeutronCapturePosition::configure | ( | ) |
Definition at line 71 of file DrawACUNeutronCapturePosition.py.
00071 : 00072 from StatisticsSvc.StatisticsSvcConf import StatisticsSvc 00073 statsSvc = StatisticsSvc() 00074 statsSvc.Input ={"file0":"CapturePosition.root"} 00075 return 00076 def run(app):
def DrawACUNeutronCapturePosition::run | ( | app | ) |
Configure and add an algorithm to job
Definition at line 77 of file DrawACUNeutronCapturePosition.py.
00077 : 00078 ''' 00079 Configure and add an algorithm to job 00080 ''' 00081 app.ExtSvc += ["StatisticsSvc"] 00082 capturePositionAlg = DrawCapturePositionAlg("MyCapturePosition") 00083 app.addAlgorithm(capturePositionAlg) 00084 pass 00085
Definition at line 11 of file DrawACUNeutronCapturePosition.py.