CMS 3D CMS Logo

muonGEMDigis_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 gemDigiCommonParameters = cms.PSet(
4  signalPropagationSpeed = cms.double(0.66),
5  cosmics = cms.bool(False),
6  timeResolution = cms.double(5),
7  timeJitter = cms.double(1.0),
8  averageShapingTime = cms.double(50.0),
9  #clsParametrization = cms.vdouble(0.455091, 0.865613, 0.945891, 0.973286, 0.986234, 0.991686, 0.996865, 0.998501, 1.),
10  averageEfficiency = cms.double(0.98),
11  averageNoiseRate = cms.double(0.001), #intrinsic noise
12  bxwidth = cms.int32(25),
13  minBunch = cms.int32(-5), ## in terms of 25 ns
14  maxBunch = cms.int32(3),
15  mixLabel = cms.string('mix'), # added by A.Sharma
16  inputCollection = cms.string('g4SimHitsMuonGEMHits'),
17  digiModelString = cms.string('Simple'),
18  digitizeOnlyMuons = cms.bool(False),
19  doBkgNoise = cms.bool(False), #False == No background simulation
20  doNoiseCLS = cms.bool(True),
21  fixedRollRadius = cms.bool(True), #Uses fixed radius in the center of the roll
22  simulateIntrinsicNoise = cms.bool(False),
23  simulateElectronBkg = cms.bool(True), #False=simulate only neutral Bkg
24  simulateLowNeutralRate = cms.bool(False), #True=neutral_Bkg at L=1x10^{34}, False at L=5x10^{34}cm^{-2}s^{-1}
25  instLumi = cms.double(7.5), # in units of 1E34 cm^-2 s^-1. Internally the background is parametrized from FLUKA+GEANT results at 5x10^34 (PU140). We are adding a 1.5 factor for PU200
26  rateFact = cms.double(2.0) # We are adding also a safety factor of 2 to take into account the new beam pipe effect (not yet known)
27 )
28 
29 # Module to create simulated GEM digis.
30 simMuonGEMDigis = cms.EDProducer("GEMDigiProducer",
31  gemDigiCommonParameters
32 )
33