File indexing completed on 2024-08-21 04:46:35
0001 import FWCore.ParameterSet.Config as cms
0002
0003 hltTrackerClusterCheck = cms.EDProducer("ClusterCheckerEDProducer",
0004 ClusterCollectionLabel = cms.InputTag("siStripClusters"),
0005 MaxNumberOfPixelClusters = cms.uint32(40000),
0006 MaxNumberOfStripClusters = cms.uint32(400000),
0007 PixelClusterCollectionLabel = cms.InputTag("hltSiPixelClusters"),
0008 cut = cms.string('strip < 400000 && pixel < 40000 && (strip < 50000 + 10*pixel) && (pixel < 5000 + 0.1*strip)'),
0009 doClusterCheck = cms.bool(False),
0010 mightGet = cms.optional.untracked.vstring,
0011 silentClusterCheck = cms.untracked.bool(False)
0012 )