CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
muonME0DigisPreReco_cfi.py
Go to the documentation of this file.
2 
3 # Module to create simulated ME0 Pre Reco digis.
4 simMuonME0Digis = cms.EDProducer("ME0DigiPreRecoProducer",
5  inputCollection = cms.string('g4SimHitsMuonME0Hits'),
6  digiPreRecoModelString = cms.string('PreRecoGaussian'),
7  timeResolution = cms.double(0.001), # in ns
8  phiResolution = cms.double(0.05), # in cm average resoltion along local x in case of no correlation
9  etaResolution = cms.double(1.),# in cm average resoltion along local y in case of no correlation
10  useCorrelation = cms.bool(False),
11  useEtaProjectiveGEO = cms.bool(False),
12  averageEfficiency = cms.double(0.98),
13  doBkgNoise = cms.bool(False), #False == No background simulation
14  digitizeOnlyMuons = cms.bool(False),
15  simulateIntrinsicNoise = cms.bool(False),
16  simulateElectronBkg = cms.bool(False), #True - will simulate electron background
17  averageNoiseRate = cms.double(0.001), #intrinsic noise
18  bxwidth = cms.int32(25),
19  minBunch = cms.int32(-5), ## in terms of 25 ns
20  maxBunch = cms.int32(3)
21 )