Classes | |
class | TesterAlg |
class | TesterAlg2 |
Functions | |
def | configure |
def | run |
def DetHelpers::TestCoordSysSvc::configure | ( | ) |
Definition at line 134 of file TestCoordSysSvc.py.
00134 : 00135 from DetHelpers.DetHelpersConf import CoordSysSvc 00136 css = CoordSysSvc() 00137 css.OutputLevel = 1 00138 00139 from Gaudi.Configuration import ApplicationMgr 00140 theApp = ApplicationMgr() 00141 theApp.ExtSvc.append(css) 00142 return 00143 def run(app):
def DetHelpers::TestCoordSysSvc::run | ( | app | ) |
Definition at line 144 of file TestCoordSysSvc.py.
00144 : 00145 00146 ta = TesterAlg2('TesterAlg21',[-414582.0,814258.0,-1923.73]) 00147 app.addAlgorithm(ta) 00148 00149 ta = TesterAlg2('TesterAlg22',[-410670.0,813170.0,3100.75]) 00150 app.addAlgorithm(ta) 00151 00152 ta = TesterAlg2('TesterAlg23',[-417953,747954,-62099.1],True) 00153 app.addAlgorithm(ta) 00154 00155 size = 10 00156 ta1 = TesterAlg('TesterAlg11',size, 00157 '/dd/Structure/AD/db-ade1/db-sst1/db-oil1/db-oav1/db-lso1') 00158 app.addAlgorithm(ta1) 00159 ta2 = TesterAlg('TesterAlg12',size, 00160 '/dd/Structure/AD/db-ade2/db-sst2/db-oil2/db-oav2/db-lso2') 00161 app.addAlgorithm(ta2) 00162 return return