Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 11:59:48

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 shallowRechitClusters = cms.EDProducer("ShallowRechitClustersProducer",
0004                                        Prefix=cms.string("cluster"),
0005                                        Suffix=cms.string(""),
0006                                        Clusters=cms.InputTag("siStripClusters"),
0007                                        InputTags= cms.VInputTag(
0008     cms.InputTag('siStripMatchedRecHits:rphiRecHit'),
0009     cms.InputTag('siStripMatchedRecHits:stereoRecHit'),
0010     cms.InputTag('siStripMatchedRecHits:rphiRecHitUnmatched'),
0011     cms.InputTag('siStripMatchedRecHits:stereoRecHitUnmatched')
0012     )
0013                                        )