Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:06:41

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 
0004 ssdigimultprod = cms.EDProducer("SiStripDigiMultiplicityProducer",
0005                                 clusterdigiCollection = cms.InputTag("siStripDigis","ZeroSuppressed"),
0006                                 wantedSubDets = cms.VPSet(    
0007                                     cms.PSet(detSelection = cms.uint32(0),detLabel = cms.string("TK")),
0008                                     cms.PSet(detSelection = cms.uint32(3),detLabel = cms.string("TIB")),
0009                                     cms.PSet(detSelection = cms.uint32(4),detLabel = cms.string("TID")),
0010                                     cms.PSet(detSelection = cms.uint32(5),detLabel = cms.string("TOB")),
0011                                     cms.PSet(detSelection = cms.uint32(6),detLabel = cms.string("TEC"))
0012                                    )
0013                                 )