CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
MeasurementTrackerEventProducer_cfi.py
Go to the documentation of this file.
2 
3 MeasurementTrackerEvent = cms.EDProducer("MeasurementTrackerEventProducer",
4  measurementTracker = cms.string(''),
5 
6  skipClusters = cms.InputTag(""),
7 
8  pixelClusterProducer = cms.string('siPixelClusters'),
9  stripClusterProducer = cms.string('siStripClusters'),
10 
11  # One or more DetIdCollections of modules to mask on the fly for a given event
12  inactivePixelDetectorLabels = cms.VInputTag(cms.InputTag('siPixelDigis')),
13  inactiveStripDetectorLabels = cms.VInputTag(cms.InputTag('siStripDigis')),
14  switchOffPixelsIfEmpty = cms.bool(True), # let's keep it like this, for cosmics
15 )
16 
17 MeasurementTrackerEventPreSplitting = MeasurementTrackerEvent.clone(
18  pixelClusterProducer = 'siPixelClustersPreSplitting'
19  )