00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 def configure( argv=[] ):
00011 """ Empty Algorithm which forces loading of Readout """
00012
00013
00014 from Gaudi.Configuration import ApplicationMgr
00015 app = ApplicationMgr()
00016
00017 from ProcessTools.ProcessToolsConf import ReadoutProcessorAlg
00018 loadReadoutAlg = ReadoutProcessorAlg("LoadReadout")
00019 loadReadoutAlg.Tools = []
00020 app.TopAlg.append(loadReadoutAlg)
00021
00022 return
00023
00024 def run(app):
00025 """ Empty Algorithm which forces loading of Readout """
00026 pass