Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2025-02-07 14:23:54

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def TriggerResultsFilter(*args, **kwargs):
0004   mod = cms.EDFilter('TriggerResultsFilter',
0005     usePathStatus = cms.bool(False),
0006     hltResults = cms.InputTag('TriggerResults', '', '@skipCurrentProcess'),
0007     l1tResults = cms.InputTag('hltGtStage2Digis'),
0008     l1tIgnoreMaskAndPrescale = cms.bool(False),
0009     throw = cms.bool(True),
0010     triggerConditions = cms.vstring('HLT_*'),
0011     mightGet = cms.optional.untracked.vstring
0012   )
0013   for a in args:
0014     mod.update_(a)
0015   mod.update_(kwargs)
0016   return mod