Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-09-26 05:06:07

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def HLTL1TMatchedPFJetsVBFFilter(*args, **kwargs):
0004   mod = cms.EDFilter('HLTL1TMatchedPFJetsVBFFilter',
0005     saveTags = cms.bool(True),
0006     src = cms.InputTag('hltJets'),
0007     matchJetsByDeltaR = cms.bool(True),
0008     maxJetDeltaR = cms.double(0.5),
0009     l1tJetRefs = cms.InputTag('hltL1sJetSeed'),
0010     algorithm = cms.string('VBF'),
0011     minPt1 = cms.double(110),
0012     minPt2 = cms.double(35),
0013     minPt3 = cms.double(110),
0014     minInvMass = cms.double(650),
0015     minNJets = cms.int32(0),
0016     maxNJets = cms.int32(-1),
0017     triggerType = cms.int32(85),
0018     mightGet = cms.optional.untracked.vstring
0019   )
0020   for a in args:
0021     mod.update_(a)
0022   mod.update_(kwargs)
0023   return mod