Functions | |
def | configure |
def DybIO::TestIncident::configure | ( | argv = None |
) |
Configure the TestIncident module.
Definition at line 11 of file TestIncident.py.
00011 : 00012 ''' 00013 Configure the TestIncident module. 00014 ''' 00015 00016 from Gaudi.Configuration import ApplicationMgr 00017 theApp = ApplicationMgr() 00018 00019 from DybIO.DybIOConf import TestIOIncidentAlg 00020 alg = TestIOIncidentAlg() 00021 theApp.TopAlg.append(alg) 00022 return 00023 00024 00025 00026