File indexing completed on 2024-09-26 05:06:06
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def HLTDiPFJetAveFilter(*args, **kwargs):
0004 mod = cms.EDFilter('HLTDiPFJetAveFilter',
0005 saveTags = cms.bool(True),
0006 inputJetTag = cms.InputTag('hltIterativeCone5CaloJets'),
0007 minPtAve = cms.double(100),
0008 minPtJet3 = cms.double(99999),
0009 minDphi = cms.double(-1),
0010 triggerType = cms.int32(85),
0011 mightGet = cms.optional.untracked.vstring
0012 )
0013 for a in args:
0014 mod.update_(a)
0015 mod.update_(kwargs)
0016 return mod