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.
1 import FWCore.ParameterSet.Config as cms
2 
3 # Module to create simulated GEM digis.
4 simMuonGEMDigis = cms.EDProducer("GEMDigiProducer",
5  signalPropagationSpeed = cms.double(0.66),
6  cosmics = cms.bool(False),
7  timeResolution = cms.double(5),
8  timeJitter = cms.double(1.0),
9  averageShapingTime = cms.double(50.0),
10 # clsParametrization = cms.vdouble(0.455091, 0.865613, 0.945891, 0.973286, 0.986234, 0.991686, 0.996865, 0.998501, 1.),
11  averageEfficiency = cms.double(0.98),
12  averageNoiseRate = cms.double(0.001), #intrinsic noise
13  bxwidth = cms.int32(25),
14  minBunch = cms.int32(-5), ## in terms of 25 ns
15  maxBunch = cms.int32(3),
16  mixLabel = cms.string('mix'), # added by A.Sharma
17  inputCollection = cms.string('g4SimHitsMuonGEMHits'),
18  digiModelString = cms.string('Simple'),
19  digitizeOnlyMuons = cms.bool(False),
20  doBkgNoise = cms.bool(True), #False == No background simulation
21  doNoiseCLS = cms.bool(True),
22  fixedRollRadius = cms.bool(True), #Uses fixed radius in the center of the roll
23  simulateIntrinsicNoise = cms.bool(False),
24  simulateElectronBkg = cms.bool(True), #False=simulate only neutral Bkg
25  simulateLowNeutralRate = cms.bool(False) #True=neutral_Bkg at L=1x10^{34}, False at L=5x10^{34}cm^{-2}s^{-1}
26 )
27