00001
00002
00003 __all__ = ['Configure', 'MuonHitSimConf']
00004
00005 class Configure:
00006 def __init__(self):
00007
00008 from Gaudi.Configuration import ApplicationMgr
00009 app = ApplicationMgr()
00010 app.HistogramPersistency = 'ROOT'
00011
00012 from MuonHitSim.MuonHitSimConf import MuonHitSim
00013 simalg = MuonHitSim()
00014 app.TopAlg.append(simalg)
00015
00016
00017 from DataSvc.DataSvcConf import StaticCableSvc
00018 cableSvc = StaticCableSvc()
00019
00020
00021 mevtope = 134.8
00022 simalg.MeVtoPE = mevtope
00023 if simalg.MeVtoPE:
00024 print 'MeVtoPE = ', simalg.MeVtoPE
00025
00026 self.SimAlg = simalg
00027
00028 return
00029
00030 pass
00031
00032