CMS 3D CMS Logo

ShallowRechitClustersProducer_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 shallowRechitClusters = cms.EDProducer("ShallowRechitClustersProducer",
4  Prefix=cms.string("cluster"),
5  Suffix=cms.string(""),
6  Clusters=cms.InputTag("siStripClusters"),
7  InputTags= cms.VInputTag(
8  cms.InputTag('siStripMatchedRecHits:rphiRecHit'),
9  cms.InputTag('siStripMatchedRecHits:stereoRecHit'),
10  cms.InputTag('siStripMatchedRecHits:rphiRecHitUnmatched'),
11  cms.InputTag('siStripMatchedRecHits:stereoRecHitUnmatched')
12  )
13  )