CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
TECClusterFilter_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # Cluster Filter
4 TECClusterFilter = cms.EDFilter("TECClusterFilter",
5  # detector modules to be excluded
6  ModulesToBeExcluded = cms.vuint32(),
7  ClusterProducer = cms.string('siStripClusters325'),
8  # with clusters over above respective threshold
9  MinNrOfTECClusters = cms.int32(1),
10  # thresholds
11  ChargeThresholdTEC = cms.int32(20)
12 )
13 
14