CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
HLTLocalRecoRPC_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # RPC DQM
5 
6 hltHighLevelRPC = cms.EDFilter("HLTHighLevel",
7  TriggerResultsTag = cms.InputTag("TriggerResults","","HLT"),
8  HLTPaths = cms.vstring('HLT_L1Mu[^_]*$',
9  'HLT_L2Mu[^_]*$',
10  'HLT_Mu[^_]*$',
11  'HLT_IsoMu[^_]*$',
12  'HLT_DoubleMu[^_]*$',
13  ),
14  #HLTPaths = cms.vstring('HLT_L1MuOpen','HLT_L1Mu', 'HLT_L1Mu20',
15  # 'HLT_L2Mu9','HLT_L2Mu11',
16 # 'HLT_Mu3', 'HLT_Mu5', 'HLT_Mu9'),
17  eventSetupPathsKey = cms.string(''), # not empty => use read paths from AlCaRecoTriggerBitsRcd via this key
18  andOr = cms.bool(True), # how to deal with multiple triggers: True (OR) accept if ANY is true, False (AND) accept if ALL are true
19  throw = cms.bool(False) # throw exception on unknown path names
20 )
21 
22 hltLocalRecoRPC = cms.Path(hltHighLevelRPC*rpcSourceHLT)