1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import FWCore.ParameterSet.Config as cms
hltMeasurementTrackerEvent = cms.EDProducer("MeasurementTrackerEventProducer",
Phase2TrackerCluster1DProducer = cms.string('hltSiPhase2Clusters'),
badPixelFEDChannelCollectionLabels = cms.VInputTag(),
inactivePixelDetectorLabels = cms.VInputTag(),
inactiveStripDetectorLabels = cms.VInputTag("siStripDigis"),
measurementTracker = cms.string(''),
mightGet = cms.optional.untracked.vstring,
pixelCablingMapLabel = cms.string(''),
pixelClusterProducer = cms.string('hltSiPixelClusters'),
skipClusters = cms.InputTag(""),
stripClusterProducer = cms.string(''),
switchOffPixelsIfEmpty = cms.bool(True)
)
|