Classes | |
class | BkgTreeAlg |
Functions | |
def | configure |
def | run |
Variables | |
TTree = gbl.TTree |
def genTree::configure | ( | argv = [] |
) |
Definition at line 554 of file genTree.py.
00554 : 00555 from StatisticsSvc.StatisticsSvcConf import StatisticsSvc 00556 statsSvc = StatisticsSvc() 00557 statsSvc.Output ={"file0":"Dsk4_tree_"+argv[0]+".root"} 00558 return 00559 def run(app):
def genTree::run | ( | app | ) |
Configure and add an algorithm to job
Definition at line 560 of file genTree.py.
00560 : 00561 ''' 00562 Configure and add an algorithm to job 00563 ''' 00564 app.ExtSvc += ["StatisticsSvc",'CoordSysSvc'] 00565 bkgtree = BkgTreeAlg("MyBackgroundStudy") 00566 app.addAlgorithm(bkgtree) 00567 pass pass
genTree::TTree = gbl.TTree [static] |
Definition at line 14 of file genTree.py.