| Classes | Job Modules | Data Objects | Services | Algorithms | Tools | Packages | Directories | Tracs |

In This Package:

__init__.py

Go to the documentation of this file.
00001 #!/usr/bin/env python
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 #        cableSvc.FeeCableMap = '$DATASVCROOT/share/DryRun/feeCableMap_DryRun.txt'
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 #End Configure
00031 
00032 
| Classes | Job Modules | Data Objects | Services | Algorithms | Tools | Packages | Directories | Tracs |

Generated on Mon Apr 11 20:31:51 2011 for MuonHitSim by doxygen 1.4.7