Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:06:47

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 RPCRecHitsFilter = cms.EDFilter("RPCRecHitFilter",
0004                                 rpcRecHitLabel = cms.untracked.string('rpcRecHits'),
0005                                 
0006                                 minimumNumberOfHits = cms.untracked.int32(2),
0007                                         
0008                                 
0009                                 #Use those variables for fine selection:
0010                                 
0011                                 #At least 1 hit in RB1in and one in RB1out of adjacent wheels and sectors
0012                                 UseBarrel = cms.untracked.bool(False),
0013                                 
0014                                 
0015                                 #At least 2 hits in 2 different rings in two adjacent sectors
0016                                 UseEndcapPositive = cms.untracked.bool(False),
0017                                 UseEndcapNegative = cms.untracked.bool(False),
0018                                 
0019                                 #Deprecated: discards the RecHhts if there is a hit in RB3 or RB4
0020                                 CosmicsVeto = cms.untracked.bool(False)
0021                                 )