Classes | |
class | ExampleAlg |
Functions | |
def | configure |
def | run |
Variables | |
int | TH1F = 1 |
def Example::configure | ( | ) |
Definition at line 87 of file Example.py.
00087 : 00088 from StatisticsSvc.StatisticsSvcConf import StatisticsSvc 00089 statsSvc = StatisticsSvc() 00090 statsSvc.Output ={"file1":"readoutResult.root"} 00091 return 00092 def run(app):
def Example::run | ( | app | ) |
Configure and add an algorithm to job
Definition at line 93 of file Example.py.
00093 : 00094 ''' 00095 Configure and add an algorithm to job 00096 ''' 00097 app.ExtSvc += ["StaticCableSvc", "StatisticsSvc"] 00098 example = ExampleAlg("MyExample") 00099 # Set your algorithm Properties here 00100 example.MyProperty = 2 00101 app.addAlgorithm(example) 00102 pass 00103
int Example::TH1F = 1 [static] |
Definition at line 14 of file Example.py.