CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
muonGEMDigis_cfi.py
Go to the documentation of this file.
2 
3 # Module to create simulated GEM digis.
4 simMuonGEMDigis = cms.EDProducer("GEMDigiProducer",
5  Noise = cms.bool(True),
6  digiModelConfig = cms.PSet(
7  signalPropagationSpeed = cms.double(0.66),
8  cosmics = cms.bool(False),
9  timeResolution = cms.double(5),
10  timeJitter = cms.double(1.0),
11  averageShapingTime = cms.double(50.0),
12  timeCalibrationOffset = cms.double(19.9),
13  averageClusterSize = cms.double(1.5),
14  averageEfficiency = cms.double(0.98),
15  averageNoiseRate = cms.double(0.0), ## [Hz/cm^2]
16  numberOfStripsPerPartition = cms.int32(384),
17  bxwidth = cms.double(25.0),
18  minBunch = cms.int32(-5), ## in terms of 25 ns
19  maxBunch = cms.int32(3)
20  ),
21  Signal = cms.bool(True),
22  InputCollection = cms.string('g4SimHitsMuonGEMHits'),
23  # digiModel = cms.string('GEMSimTriv')
24  digiModel = cms.string('GEMSimAverage')
25 )