CMS 3D CMS Logo

sistripdigimultiplicityprod_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 
4 ssdigimultprod = cms.EDProducer("SiStripDigiMultiplicityProducer",
5  clusterdigiCollection = cms.InputTag("siStripDigis","ZeroSuppressed"),
6  wantedSubDets = cms.VPSet(
7  cms.PSet(detSelection = cms.uint32(0),detLabel = cms.string("TK")),
8  cms.PSet(detSelection = cms.uint32(3),detLabel = cms.string("TIB")),
9  cms.PSet(detSelection = cms.uint32(4),detLabel = cms.string("TID")),
10  cms.PSet(detSelection = cms.uint32(5),detLabel = cms.string("TOB")),
11  cms.PSet(detSelection = cms.uint32(6),detLabel = cms.string("TEC"))
12  )
13  )