CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
pfType1MET_cfi.py
Go to the documentation of this file.
2 
3 # Type-1 met corrections (AK5PFJets)
4 # remember about including ES producer definition e.g. JetMETCorrections.Configuration.L2L3Corrections_Summer08Redigi_cff
5 
6 pfType1MET = cms.EDProducer("Type1PFMET",
7  inputUncorJetsTag = cms.InputTag("ak5PFJets"),
8  jetEMfracLimit = cms.double(0.95), # to remove electron which give rise to jets
9  jetMufracLimit = cms.double(0.95), # to remove electron which give rise to jets
10  metType = cms.string("PFMET"),
11  jetPTthreshold = cms.double(20.0),
12  # pfMET should be not corrected for HF 0.7
13  inputUncorMetLabel = cms.string("pfMET"),
14  corrector = cms.string("L2L3JetCorrectorAK5PF")
15 )
16