7 def __init__(self,globalTag,jetFlavour,doResidualJECs,jecPath,upToLevel=3,
8 calculateSeparateCorrections=
False,
9 calculateType1METCorrection=
False, type1METParams={
'jetPtThreshold':15.,
'skipEMfractionThreshold':0.9,
'skipMuons':
True} ):
10 """Create a corrector object that reads the payloads from the text dumps of a global tag under
11 CMGTools/RootTools/data/jec (see the getJec.py there to make the dumps).
12 It will apply the L1,L2,L3 and possibly the residual corrections to the jets.
13 If configured to do so, it will also compute the type1 MET corrections."""
22 path = os.path.expandvars(jecPath)
23 self.
L1JetPar = ROOT.JetCorrectorParameters(
"%s/%s_L1FastJet_%s.txt" % (path,globalTag,jetFlavour),
"");
24 self.
L2JetPar = ROOT.JetCorrectorParameters(
"%s/%s_L2Relative_%s.txt" % (path,globalTag,jetFlavour),
"");
25 self.
L3JetPar = ROOT.JetCorrectorParameters(
"%s/%s_L3Absolute_%s.txt" % (path,globalTag,jetFlavour),
"");
26 self.
vPar = ROOT.vector(ROOT.JetCorrectorParameters)()
28 if upToLevel >= 2: self.vPar.push_back(self.
L2JetPar);
29 if upToLevel >= 3: self.vPar.push_back(self.
L3JetPar);
32 self.
ResJetPar = ROOT.JetCorrectorParameters(
"%s/%s_L2L3Residual_%s.txt" % (path,globalTag,jetFlavour))
36 if os.path.exists(
"%s/%s_Uncertainty_%s.txt" % (path,globalTag,jetFlavour)):
37 self.
JetUncertainty = ROOT.JetCorrectionUncertainty(
"%s/%s_Uncertainty_%s.txt" % (path,globalTag,jetFlavour));
38 elif os.path.exists(
"%s/Uncertainty_FAKE.txt" % path):
39 self.
JetUncertainty = ROOT.JetCorrectionUncertainty(
"%s/Uncertainty_FAKE.txt" % path);
41 print 'Missing JEC uncertainty file "%s/%s_Uncertainty_%s.txt", so jet energy uncertainties will not be available' % (path,globalTag,jetFlavour)
44 if calculateSeparateCorrections
or calculateType1METCorrection:
45 self.
vParL1 = ROOT.vector(ROOT.JetCorrectorParameters)()
48 if upToLevel >= 2
and calculateSeparateCorrections:
49 self.
vParL2 = ROOT.vector(ROOT.JetCorrectorParameters)()
52 if upToLevel >= 3
and calculateSeparateCorrections:
53 self.
vParL3 = ROOT.vector(ROOT.JetCorrectorParameters)()
56 if doResidualJECs
and calculateSeparateCorrections:
57 self.
vParL3Res = ROOT.vector(ROOT.JetCorrectorParameters)()
63 if corrector != self.
JetCorrector and delta!=0:
raise RuntimeError,
'Configuration not supported'
64 corrector.setJetEta(jet.eta())
65 corrector.setJetPt(jet.pt()*jet.rawFactor())
66 corrector.setJetA(jet.jetArea())
68 corr = corrector.getCorrection()
70 if not self.
JetUncertainty:
raise RuntimeError,
"Jet energy scale uncertainty shifts requested, but not available"
71 self.JetUncertainty.setJetEta(jet.eta())
72 self.JetUncertainty.setJetPt(corr * jet.pt() * jet.rawFactor())
74 jet.jetEnergyCorrUncertainty = self.JetUncertainty.getUncertainty(
True)
75 except RuntimeError, r:
76 print "Caught %s when getting uncertainty for jet of pt %.1f, eta %.2f\n" % (r,corr * jet.pt() * jet.rawFactor(),jet.eta())
77 jet.jetEnergyCorrUncertainty = 0.5
79 corr *=
max(0, 1+delta*jet.jetEnergyCorrUncertainty)
83 """Return the raw 4-vector, after subtracting the muons (if requested),
84 or None if the jet fails the EMF cut."""
85 p4 = jet.p4() * jet.rawFactor()
86 emf = ( jet.physObj.neutralEmEnergy() + jet.physObj.chargedEmEnergy() )/p4.E()
90 for idau
in xrange(jet.numberOfDaughters()):
91 pfcand = jet.daughter(idau)
92 if pfcand.isGlobalMuon()
or pfcand.isStandAloneMuon():
96 def correct(self,jet,rho,delta=0,addCorr=False,addShifts=False, metShift=[0,0],type1METCorr=[0,0,0]):
97 """Corrects a jet energy (optionally shifting it also by delta times the JEC uncertainty)
99 If addCorr, set jet.corr to the correction.
100 If addShifts, set also the +1 and -1 jet shifts
102 The metShift vector will accumulate the x and y changes to the MET from the JEC, i.e. the
103 negative difference between the new and old jet momentum, for jets eligible for type1 MET
104 corrections, and after subtracting muons. The pt cut is applied to the new corrected pt.
105 This shift can be applied on top of the *OLD TYPE1 MET*, but only if there was no change
106 in the L1 corrections nor in the definition of the type1 MET (e.g. jet pt cuts).
108 The type1METCorr vector, will accumulate the x, y, sumEt type1 MET corrections, to be
109 applied to the *RAW MET* (if the feature was turned on in the constructor of the class).
111 raw = jet.rawFactor()
115 for sepcorr
in self.separateJetCorrectors.keys():
118 for cdelta,shift
in [(1.0,
"JECUp"), (-1.0,
"JECDown")]:
120 setattr(jet,
"corr"+shift, cshift)
123 newpt = jet.pt()*raw*corr
126 if rawP4forT1
and rawP4forT1.Pt()*corr > self.
type1METParams[
'jetPtThreshold']:
127 metShift[0] -= rawP4forT1.Px() * (corr - 1.0/raw)
128 metShift[1] -= rawP4forT1.Py() * (corr - 1.0/raw)
135 type1METCorr[0] -= rawP4forT1.Px() * (corr - l1corr)
136 type1METCorr[1] -= rawP4forT1.Py() * (corr - l1corr)
137 type1METCorr[2] += rawP4forT1.Et() * (corr - l1corr)
138 jet.setCorrP4(jet.p4() * (corr * raw))
141 def correctAll(self,jets,rho,delta=0, addCorr=False, addShifts=False, metShift=[0.,0.], type1METCorr=[0.,0.,0.]):
142 """Applies 'correct' to all the jets, discard the ones that have bad corrections (corrected pt <= 0)"""
144 if metShift != [0.,0. ]:
raise RuntimeError,
"input metShift tuple is not initialized to zeros"
145 if type1METCorr != [0.,0.,0.]:
raise RuntimeError,
"input type1METCorr tuple is not initialized to zeros"
147 ok = self.
correct(j,rho,delta,addCorr=addCorr,addShifts=addShifts,metShift=metShift,type1METCorr=type1METCorr)
148 if not ok: badJets.append(j)
150 print "Warning: %d out of %d jets flagged bad by JEC." % (len(badJets), len(jets))
156 """Object to apply type1 corrections computed by the JetReCalibrator to the MET.
157 old74XMiniAODs should be True if using inputs produced with CMSSW_7_4_11 or earlier."""
160 oldpx, oldpy = met.px(), met.py()
163 raw = met.shiftedP2_74x(12,0);
164 rawsumet = met.shiftedSumEt_74x(12,0);
167 rawsumet = met.uncorSumEt();
168 rawpx, rawpy = raw.px, raw.py
170 corrpx = rawpx + type1METCorrections[0]
171 corrpy = rawpy + type1METCorrections[1]
172 corrsumet = rawsumet + type1METCorrections[2]
174 met.setP4(ROOT.reco.Particle.LorentzVector(corrpx,corrpy,0,hypot(corrpx,corrpy)))
176 met._sumEt = corrsumet
177 met.sumEt = types.MethodType(
lambda myself : myself._sumEt, met, met.__class__)
179 met.setCorShift(rawpx, rawpy, rawsumet, met.Raw)
185 met._rawSumEt = rawsumet
186 met._rawP4 = ROOT.reco.Particle.LorentzVector(rawpx,rawpy,0,hypot(rawpx,rawpy))
187 met.uncorPt = types.MethodType(
lambda myself : myself._rawP4.Pt(), met, met.__class__)
188 met.uncorPx = types.MethodType(
lambda myself : myself._rawP4.Px(), met, met.__class__)
189 met.uncorPy = types.MethodType(
lambda myself : myself._rawP4.Py(), met, met.__class__)
190 met.uncorPhi = types.MethodType(
lambda myself : myself._rawP4.Phi(), met, met.__class__)
191 met.uncorP4 = types.MethodType(
lambda myself : myself._rawP4, met, met.__class__)
192 met.uncorSumEt = types.MethodType(
lambda myself : myself._rawSumEt, met, met.__class__)
194 met.uncorP2 = types.MethodType(
lambda myself :
None, met, met.__class__)
195 met.uncorP3 = types.MethodType(
lambda myself :
None, met, met.__class__)
def setFakeRawMETOnOldMiniAODs