Classes | |
class | ExampleAlg |
Functions | |
def | configure |
def | run |
Variables | |
int | TH1F = 1 |
def ViktorsTest::configure | ( | ) |
Definition at line 69 of file ViktorsTest.py.
00069 : 00070 from StatisticsSvc.StatisticsSvcConf import StatisticsSvc 00071 statsSvc = StatisticsSvc() 00072 statsSvc.Output ={"file1":"exampleHist.root"} 00073 return 00074 def run(app):
def ViktorsTest::run | ( | app | ) |
Configure and add an algorithm to job
Definition at line 75 of file ViktorsTest.py.
00075 : 00076 ''' 00077 Configure and add an algorithm to job 00078 ''' 00079 app.ExtSvc += ["StaticCableSvc", "StatisticsSvc"] 00080 example = ExampleAlg("MyExample") 00081 app.addAlgorithm(example) 00082 pass pass
int ViktorsTest::TH1F = 1 [static] |
Definition at line 14 of file ViktorsTest.py.