Functions | |
def | configure |
def | run |
def Sim15::ana::configure | ( | ) |
Definition at line 10 of file ana.py.
00010 : 00011 00012 from Gaudi.Configuration import ApplicationMgr 00013 theApp = ApplicationMgr() 00014 00015 #from RootIOTest.RootIOTestConf import RegSeqDumpAlg 00016 #rsda = RegSeqDumpAlg() 00017 #theApp.TopAlg.append(rsda) 00018 00019 00020 from Sim15.Sim15Conf import Ana15 00021 ana15=Ana15() 00022 ana15.TopStage='Kinematic' 00023 #ana15.TopStage='Detector' 00024 #ana15.TopStage='Electronic' 00025 #ana15.TopStage='TrigRead' 00026 #ana15.TopStage='SingleLoader' 00027 ana15.OutputLevel=2 00028 theApp.TopAlg.append(ana15) 00029 00030 return 00031 def run(app):
def Sim15::ana::run | ( | app | ) |