Functions | |
def | configure |
def | run |
def LoadReadout::configure | ( | argv = [] |
) |
Empty Algorithm which forces loading of Readout
Definition at line 10 of file LoadReadout.py.
00010 : 00011 """ Empty Algorithm which forces loading of Readout """ 00012 00013 # Add AD Figure Algorithm 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 def run(app):
def LoadReadout::run | ( | app | ) |
Empty Algorithm which forces loading of Readout
Definition at line 24 of file LoadReadout.py.
00024 : 00025 """ Empty Algorithm which forces loading of Readout """ 00026 pass pass