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