test
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.
1 import FWCore.ParameterSet.Config as cms
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 resolution along local x in case of no correlation
9  etaResolution = cms.double(1.), # in cm average resolution 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  gaussianSmearing = cms.bool(True), # False --> Uniform smearing
14  digitizeOnlyMuons = cms.bool(False),
15  # simulateIntrinsicNoise = cms.bool(False), # intrinsic noise --> not implemented
16  # averageNoiseRate = cms.double(0.001), # intrinsic noise --> not implemented
17  simulateElectronBkg = cms.bool(True), # True - will simulate electron background
18  simulateNeutralBkg = cms.bool(True), # True - will simulate neutral (n+g) background
19  minBunch = cms.int32(-5), # [x 25 ns], forms the readout window together with maxBunch,
20  maxBunch = cms.int32(3), # we should think of shrinking this window ...
21  mixLabel = cms.string('mix'),
22 )