CMS 3D CMS Logo

hltTrackerClusterCheck_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 hltTrackerClusterCheck = cms.EDProducer("ClusterCheckerEDProducer",
4  ClusterCollectionLabel = cms.InputTag("siStripClusters"),
5  MaxNumberOfPixelClusters = cms.uint32(40000),
6  MaxNumberOfStripClusters = cms.uint32(400000),
7  PixelClusterCollectionLabel = cms.InputTag("hltSiPixelClusters"),
8  cut = cms.string('strip < 400000 && pixel < 40000 && (strip < 50000 + 10*pixel) && (pixel < 5000 + 0.1*strip)'),
9  doClusterCheck = cms.bool(False),
10  mightGet = cms.optional.untracked.vstring,
11  silentClusterCheck = cms.untracked.bool(False)
12 )