test
CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
muonME0ReDigis_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 simMuonME0ReDigis = cms.EDProducer("ME0ReDigiProducer",
5  inputCollection = cms.string('simMuonME0Digis'),
6  timeResolution = cms.double(5), # in ns
7  minBunch = cms.int32(-5),
8  maxBunch = cms.int32(3),
9  smearTiming = cms.bool(True),
10  discretizeTiming = cms.bool(True),
11  radialResolution = cms.double(0.02), # in cm average resolution along radial
12  smearRadial = cms.bool(True),
13  oldXResolution = cms.double(0.00),
14  oldYResolution = cms.double(0.00),
15  newXResolution = cms.double(0.03),
16  newYResolution = cms.double(2.50),
17  discretizeX = cms.bool(False),
18  discretizeY = cms.bool(True),
19  verbose = cms.bool(False),
20  reDigitizeOnlyMuons = cms.bool(False),
21  reDigitizeNeutronBkg = cms.bool(True),
22  instLumi = cms.double(5.0), # in units of 1E34 cm^-2 s^-1
23 )