1
2
3
4
5
6
7
8
9
|
import FWCore.ParameterSet.Config as cms
largeSiStripClusterEvents = cms.EDFilter('LargeSiStripClusterEvents',
collectionName = cms.InputTag("siStripClusters"),
absoluteThreshold = cms.untracked.int32(300),
moduleThreshold = cms.untracked.int32(20),
useQuality = cms.untracked.bool(False),
qualityLabel = cms.untracked.string("")
)
|