Classes | |
class | TesToTreeAlg |
Functions | |
def | configure |
def | run |
Variables | |
TTree = gbl.TTree | |
Detector = gbl.DayaBay.Detector | |
Site = gbl.Site | |
DetectorId = gbl.DetectorId | |
ServiceMode = gbl.ServiceMode | |
AdPmtSensor = gbl.DayaBay.AdPmtSensor |
def RawEventTree::configure | ( | argv = [] |
) |
Definition at line 191 of file RawEventTree.py.
00191 : 00192 # Process module options 00193 import sys, getopt 00194 opts,args = getopt.getopt(argv,"o:") 00195 statsOutput = "eventTree.root" 00196 initializeDataSvc = True 00197 for opt,arg in opts: 00198 if opt == "-o": 00199 statsOutput = arg 00200 if statsOutput != "None": 00201 from StatisticsSvc.StatisticsSvcConf import StatisticsSvc 00202 statsSvc = StatisticsSvc() 00203 statsSvc.Output = {"file0":statsOutput} 00204 return 00205 def run(app):
def RawEventTree::run | ( | app | ) |
Configure and add an algorithm to job
Definition at line 206 of file RawEventTree.py.
00206 : 00207 ''' 00208 Configure and add an algorithm to job 00209 ''' 00210 app.ExtSvc += ["StatisticsSvc","StaticCableSvc"] 00211 tesToTreeAlg = TesToTreeAlg("TesToTreeAlg") 00212 app.addAlgorithm(tesToTreeAlg) 00213 pass pass
RawEventTree::TTree = gbl.TTree [static] |
Definition at line 16 of file RawEventTree.py.
RawEventTree::Detector = gbl.DayaBay.Detector [static] |
Definition at line 18 of file RawEventTree.py.
RawEventTree::Site = gbl.Site [static] |
Definition at line 19 of file RawEventTree.py.
RawEventTree::DetectorId = gbl.DetectorId [static] |
Definition at line 20 of file RawEventTree.py.
RawEventTree::ServiceMode = gbl.ServiceMode [static] |
Definition at line 21 of file RawEventTree.py.
RawEventTree::AdPmtSensor = gbl.DayaBay.AdPmtSensor [static] |
Definition at line 22 of file RawEventTree.py.