CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
RPCRecHitFilter_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 RPCRecHitsFilter = cms.EDFilter("RPCRecHitFilter",
4  rpcRecHitLabel = cms.untracked.string('rpcRecHits'),
5 
6  minimumNumberOfHits = cms.untracked.int32(2),
7 
8 
9  #Use those variables for fine selection:
10 
11  #At least 1 hit in RB1in and one in RB1out of adjacent wheels and sectors
12  UseBarrel = cms.untracked.bool(False),
13 
14 
15  #At least 2 hits in 2 different rings in two adjacent sectors
16  UseEndcapPositive = cms.untracked.bool(False),
17  UseEndcapNegative = cms.untracked.bool(False),
18 
19  #Deprecated: discards the RecHhts if there is a hit in RB3 or RB4
20  CosmicsVeto = cms.untracked.bool(False)
21  )