CMS 3D CMS Logo

muonME0PseudoReDigis_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # Module to create simulated ME0 Pre Reco digis.
4 simMuonME0PseudoReDigis = cms.EDProducer("ME0ReDigiProducer",
5  inputCollection =cms.string('simMuonME0PseudoDigis'),
6  useCusGeoFor1PartGeo =cms.bool(True), #Use custom strips and partitions for digitization for single partition geometry
7  usePads =cms.bool(False), #sets strip granularity to x2 coarser
8  numberOfStrips =cms.uint32(384), # If use custom: number of strips per partition
9  numberOfPartitions =cms.uint32(8), # If use custom: number of partitions per chamber
10  neutronAcceptance =cms.double(2.0), # fraction of neutron events to keep in event (>= 1 means no filtering)
11  timeResolution =cms.double(5), # smear time by gaussian with this sigma (in ns)....negative for no smearing
12  minBXReadout =cms.int32(-1), # Minimum BX to readout
13  maxBXReadout =cms.int32(1), # Maximum BX to readout
14  layerReadout =cms.vint32(1,1,1,1,1,1), # Don't readout layer if entry is 0 (Layer number 1 (near IP) in the numbering scheme is idx 0)
15  mergeDigis =cms.bool(True), # Keep only one digi at the same chamber, strip, partition, and BX
16 )