File indexing completed on 2025-02-07 14:23:54
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def HLTAcoFilter(*args, **kwargs):
0004 mod = cms.EDFilter('HLTAcoFilter',
0005 saveTags = cms.bool(True),
0006 inputJetTag = cms.InputTag('IterativeCone5CaloJets'),
0007 inputMETTag = cms.InputTag('MET'),
0008 minDeltaPhi = cms.double(0),
0009 maxDeltaPhi = cms.double(2),
0010 minEtJet1 = cms.double(20),
0011 minEtJet2 = cms.double(20),
0012 Acoplanar = cms.string('Jet1Jet2'),
0013 mightGet = cms.optional.untracked.vstring
0014 )
0015 for a in args:
0016 mod.update_(a)
0017 mod.update_(kwargs)
0018 return mod