CMS 3D CMS Logo

METSignificanceParams_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 METSignificanceParams = cms.PSet(
4 
5  # jet resolutions
6  jetThreshold = cms.double(15),
7 
8  #jet-lepton matching dR
9  dRMatch = cms.double(0.4),
10 
11  # eta bins for jet resolution tuning
12  jeta = cms.vdouble(0.8, 1.3, 1.9, 2.5),
13 
14  # tuning parameters
15  #Run I, based on 53X / JME-13-003
16  #jpar = cms.vdouble(1.20,1.13,1.03,0.96,1.08),
17  #pjpar = cms.vdouble(-1.9,0.6383)
18  #Run II MC, based on 76X
19  #https://indico.cern.ch/event/527789/contributions/2160488/attachments/1271716/1884792/nmirman_20160511.pdf
20  jpar = cms.vdouble(1.29,1.19,1.07,1.13,1.12),
21  pjpar = cms.vdouble(-0.04,0.6504),
22  )
23 
24 METSignificanceParams_Data=cms.PSet(
25 
26  # jet resolutions
27  jetThreshold = cms.double(15),
28 
29  #jet-lepton matching dR
30  dRMatch = cms.double(0.4),
31 
32  # eta bins for jet resolution tuning
33  jeta = cms.vdouble(0.8, 1.3, 1.9, 2.5),
34 
35  # tuning parameters
36  #Run I, based on 53X / JME-13-003
37  #jpar = cms.vdouble(1.20,1.13,1.03,0.96,1.08),
38  #pjpar = cms.vdouble(-1.9,0.6383)
39  #Run II data, based on 76X
40  #https://indico.cern.ch/event/527789/contributions/2160488/attachments/1271716/1884792/nmirman_20160511.pdf
41  jpar = cms.vdouble(1.26,1.14,1.13,1.13,1.06),
42  pjpar = cms.vdouble(-3.3,0.5961),
43  )