Classes | |
class | RootRandom |
class | ClhepRandom |
class | RandomEater |
class | EatRandom |
Functions | |
def | configure |
def | run |
def DybAlg::TestRandom::configure | ( | argv = None |
) |
Definition at line 129 of file TestRandom.py.
00129 : 00130 00131 from DybAlg.DybAlgConf import DybShuffle 00132 rs = DybShuffle("random_seeder") 00133 try: 00134 burn = argv[0] 00135 except IndexError: 00136 print 'Using default burn count',rs.BurnCount 00137 else: 00138 rs.BurnCount = int(burn) 00139 print 'Setting burn to',rs.BurnCount 00140 00141 #from GaudiSvc.GaudiSvcConf import RndmGenSvc 00142 #rndSvc = RndmGenSvc() 00143 #rndSvc.Engine = 'HepRndm::Engine<HepRootRandom>' 00144 00145 #rs.OutputLevel = 2 00146 00147 return 00148 def run(app):
def DybAlg::TestRandom::run | ( | app | ) |
Definition at line 149 of file TestRandom.py.
00149 : 00150 alg = EatRandom() 00151 app.addAlgorithm(alg) 00152 return 00153 00154