Classes | |
class | MultiStreams |
Functions | |
def | configure |
def | run |
def RootIOTest::TestMultiStream::configure | ( | argv = None |
) |
Definition at line 61 of file TestMultiStream.py.
00061 : 00062 if not argv: return 00063 00064 print argv 00065 if argv[0] == "LotsaGens": 00066 print 'Generating some stuff' 00067 from RootIOTest.RootIOTestConf import LotsaGens 00068 alg = LotsaGens() 00069 from Gaudi.Configuration import ApplicationMgr 00070 theApp = ApplicationMgr() 00071 theApp.TopAlg.append(alg) 00072 00073 return 00074 def run(app):
def RootIOTest::TestMultiStream::run | ( | app | ) |
Definition at line 75 of file TestMultiStream.py.
00075 : 00076 alg = MultiStreams() 00077 app.addAlgorithm(alg) 00078 return 00079