CMS 3D CMS Logo

SiStripClusterizer_RealData_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
4 
5 siStripClusters = cms.EDProducer("SiStripClusterizer",
6  Clusterizer = DefaultClusterizer,
7  DigiProducersList = cms.VInputTag(
8  cms.InputTag('siStripDigis','ZeroSuppressed'),
9  cms.InputTag('siStripZeroSuppression','VirginRaw'),
10  cms.InputTag('siStripZeroSuppression','ProcessedRaw'),
11  cms.InputTag('siStripZeroSuppression','ScopeMode')),
12  )
13 
14 # The SiStripClusters are not used anymore in phase2 tracking
15 # This part has to be clean up when they will be officially removed from the entire flow
16 from Configuration.Eras.Modifier_phase2_tracker_cff import phase2_tracker
17 phase2_tracker.toModify(siStripClusters, # FIXME
18  DigiProducersList = cms.VInputTag( cms.InputTag('simSiStripDigis','ZeroSuppressed'),
19  cms.InputTag('siStripZeroSuppression','VirginRaw'),
20  cms.InputTag('siStripZeroSuppression','ProcessedRaw'),
21  cms.InputTag('siStripZeroSuppression','ScopeMode'))
22 )