Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-03-17 10:38:33

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 
0004 
0005 
0006 ## Trigger for MC
0007 import HLTrigger.HLTfilters.hltHighLevel_cfi
0008 TriggerFilter = HLTrigger.HLTfilters.hltHighLevel_cfi.hltHighLevel.clone(
0009     TriggerResultsTag = cms.InputTag("TriggerResults","","HLT"),
0010     #HLTPaths = ['HLT_Mu9', 'HLT_Mu15_v*'],
0011     #HLTPaths = ['HLT_IsoMu17_v*'],
0012     HLTPaths = ['HLT_IsoMu24_*'], #  # provide list of HLT paths (or patterns) you want
0013     #HLTPaths = ['@'],
0014     #andOr = cms.bool(True),   # how to deal with multiple triggers: True (OR) accept if ANY is true, False (AND) accept if ALL are true
0015     throw = False, ## throw exception on unknown path names
0016 )
0017 
0018 
0019 
0020 ## SEQUENCE
0021 TriggerSelectionSequence = cms.Sequence(
0022     TriggerFilter
0023 )
0024 
0025 
0026 
0027 
0028