File indexing completed on 2025-02-07 14:23:57
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def Type1PFMET(*args, **kwargs):
0004 mod = cms.EDProducer('Type1PFMET',
0005 inputUncorJetsTag = cms.InputTag('ak4PFJets'),
0006 jetEMfracLimit = cms.double(0.95),
0007 jetMufracLimit = cms.double(0.95),
0008 metType = cms.string('PFMET'),
0009 jetPTthreshold = cms.double(20),
0010 inputUncorMetLabel = cms.InputTag('pfMET'),
0011 corrector = cms.InputTag('ak4PFL2L3Corrector'),
0012 mightGet = cms.optional.untracked.vstring
0013 )
0014 for a in args:
0015 mod.update_(a)
0016 mod.update_(kwargs)
0017 return mod