CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_10_patch2/src/SimMuon/RPCDigitizer/python/muonRPCDigis_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 # Module to create simulated RPC digis.
00004 simMuonRPCDigis = cms.EDProducer("RPCDigiProducer",
00005     Noise = cms.bool(True),
00006     digiModelConfig = cms.PSet(
00007         signalPropagationSpeed = cms.double(0.66),
00008         timingRPCOffset = cms.double(50.0),
00009         Frate = cms.double(1.0),
00010         printOutDigitizer = cms.bool(False),
00011         cosmics = cms.bool(False),
00012         deltatimeAdjacentStrip = cms.double(3.0),
00013         linkGateWidth = cms.double(20.0),
00014         Rate = cms.double(0.0),
00015         timeResolution = cms.double(2.5),
00016         averageClusterSize = cms.double(1.5),
00017         Gate = cms.double(25.0),
00018         averageEfficiency = cms.double(0.95),
00019         Nbxing = cms.int32(9),
00020         timeJitter = cms.double(1.0)
00021     ),
00022     Signal = cms.bool(True),
00023     InputCollection = cms.string('g4SimHitsMuonRPCHits'),
00024     digiModel = cms.string('RPCSimAverageNoiseEffCls')
00025 )
00026 
00027 
00028