Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:11:01

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 # Cluster Filter
0004 TECClusterFilter = cms.EDFilter("TECClusterFilter",
0005     # detector modules to be excluded
0006     ModulesToBeExcluded = cms.vuint32(),
0007     ClusterProducer = cms.string('siStripClusters325'),
0008     # with clusters over above respective threshold
0009     MinNrOfTECClusters = cms.int32(1),
0010     # thresholds
0011     ChargeThresholdTEC = cms.int32(20)
0012 )
0013 
0014