Classes | |
class | TestAlg |
Functions | |
def | configure |
def | run |
Variables | |
Detector = gbl.DayaBay.Detector | |
ServiceMode = gbl.ServiceMode | |
Context = gbl.Context | |
Site = gbl.Site | |
DetectorId = gbl.DetectorId | |
FeeCableMap = gbl.FeeCableMap | |
string | cableSvcName = "StaticCableSvc" |
def DataSvc::TestCableSvc::configure | ( | argv = [] |
) |
Definition at line 59 of file TestCableSvc.py.
00059 : 00060 global cableSvcName 00061 import getopt 00062 opts,args = getopt.getopt(argv,"",["svc-name="]) 00063 for opt,arg in opts: 00064 if opt == "--svc-name": 00065 cableSvcName = arg 00066 import DataSvc 00067 DataSvc.Configure( cableSvc = cableSvcName ) 00068 return 00069 def run(app):
def DataSvc::TestCableSvc::run | ( | app | ) |
Definition at line 70 of file TestCableSvc.py.
00070 : 00071 global cableSvcName 00072 app.ExtSvc += [ cableSvcName ] 00073 testAlg = TestAlg("TestAlg") 00074 testAlg.cableSvcName = cableSvcName 00075 app.addAlgorithm( testAlg ) 00076 return return
Definition at line 6 of file TestCableSvc.py.
Definition at line 7 of file TestCableSvc.py.
DataSvc::TestCableSvc::Context = gbl.Context [static] |
Definition at line 8 of file TestCableSvc.py.
DataSvc::TestCableSvc::Site = gbl.Site [static] |
Definition at line 9 of file TestCableSvc.py.
DataSvc::TestCableSvc::DetectorId = gbl.DetectorId [static] |
Definition at line 10 of file TestCableSvc.py.
Definition at line 12 of file TestCableSvc.py.
string DataSvc::TestCableSvc::cableSvcName = "StaticCableSvc" [static] |
Definition at line 57 of file TestCableSvc.py.