1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
import FWCore.ParameterSet.Config as cms
# Cluster Filter
TECClusterFilter = cms.EDFilter("TECClusterFilter",
# detector modules to be excluded
ModulesToBeExcluded = cms.vuint32(),
ClusterProducer = cms.string('siStripClusters325'),
# with clusters over above respective threshold
MinNrOfTECClusters = cms.int32(1),
# thresholds
ChargeThresholdTEC = cms.int32(20)
)
|