File indexing completed on 2025-02-07 14:23:54
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def HLTHtMhtFilter(*args, **kwargs):
0004 mod = cms.EDFilter('HLTHtMhtFilter',
0005 saveTags = cms.bool(True),
0006 htLabels = cms.VInputTag('hltHtMhtProducer'),
0007 mhtLabels = cms.VInputTag('hltHtMhtProducer'),
0008 minHt = cms.vdouble(250),
0009 minMht = cms.vdouble(70),
0010 minMeff = cms.vdouble(0),
0011 meffSlope = cms.vdouble(1),
0012 mightGet = cms.optional.untracked.vstring
0013 )
0014 for a in args:
0015 mod.update_(a)
0016 mod.update_(kwargs)
0017 return mod