File indexing completed on 2024-09-26 05:06:05
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def HLTCaloJetTag(*args, **kwargs):
0004 mod = cms.EDFilter('HLTCaloJetTag',
0005 saveTags = cms.bool(True),
0006 Jets = cms.InputTag('hltJetCollection'),
0007 JetTags = cms.InputTag('hltJetTagCollection'),
0008 MinTag = cms.double(2),
0009 MaxTag = cms.double(999999),
0010 MinJets = cms.int32(1),
0011 MatchJetsByDeltaR = cms.bool(False),
0012 MaxJetDeltaR = cms.double(0.1),
0013 TriggerType = cms.int32(0),
0014 mightGet = cms.optional.untracked.vstring
0015 )
0016 for a in args:
0017 mod.update_(a)
0018 mod.update_(kwargs)
0019 return mod