CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
muonRPCDigis_cfi.py
Go to the documentation of this file.
2 
3 # Module to create simulated RPC digis.
4 simMuonRPCDigis = cms.EDProducer("RPCDigiProducer",
5  Noise = cms.bool(True),
6  digiModelConfig = cms.PSet(
7  signalPropagationSpeed = cms.double(0.66),
8  timingRPCOffset = cms.double(50.0),
9  Frate = cms.double(1.0),
10  printOutDigitizer = cms.bool(False),
11  cosmics = cms.bool(False),
12  deltatimeAdjacentStrip = cms.double(3.0),
13  linkGateWidth = cms.double(20.0),
14  Rate = cms.double(0.0),
15  timeResolution = cms.double(2.5),
16  averageClusterSize = cms.double(1.5),
17  Gate = cms.double(25.0),
18  averageEfficiency = cms.double(0.95),
19  Nbxing = cms.int32(9),
20  timeJitter = cms.double(1.0)
21  ),
22  Signal = cms.bool(True),
23  InputCollection = cms.string('g4SimHitsMuonRPCHits'),
24  digiModel = cms.string('RPCSimAverageNoiseEffCls')
25 )
26 
27 
28