CMS 3D CMS Logo

JetAnalyzer.py
Go to the documentation of this file.
1 from __future__ import print_function
2 from builtins import range
3 import math, os
4 from PhysicsTools.Heppy.analyzers.core.Analyzer import Analyzer
5 from PhysicsTools.Heppy.analyzers.core.AutoHandle import AutoHandle
6 from PhysicsTools.Heppy.physicsobjects.PhysicsObjects import Jet
7 from PhysicsTools.HeppyCore.utils.deltar import deltaR2, deltaPhi, matchObjectCollection, matchObjectCollection2, bestMatch,matchObjectCollection3
8 from PhysicsTools.Heppy.physicsutils.JetReCalibrator import JetReCalibrator
9 import PhysicsTools.HeppyCore.framework.config as cfg
10 
11 from PhysicsTools.Heppy.physicsutils.QGLikelihoodCalculator import QGLikelihoodCalculator
12 
13 import six
14 import copy
15 def cleanNearestJetOnly(jets,leptons,deltaR):
16  dr2 = deltaR**2
17  good = [ True for j in jets ]
18  for l in leptons:
19  ibest, d2m = -1, dr2
20  for i,j in enumerate(jets):
21  d2i = deltaR2(l.eta(),l.phi(), j.eta(),j.phi())
22  if d2i < d2m:
23  ibest, d2m = i, d2i
24  if ibest != -1: good[ibest] = False
25  return [ j for (i,j) in enumerate(jets) if good[i] == True ]
26 
27 def cleanJetsAndLeptons(jets,leptons,deltaR,arbitration):
28  dr2 = deltaR**2
29  goodjet = [ True for j in jets ]
30  goodlep = [ True for l in leptons ]
31  for il, l in enumerate(leptons):
32  ibest, d2m = -1, dr2
33  for i,j in enumerate(jets):
34  d2i = deltaR2(l.eta(),l.phi(), j.eta(),j.phi())
35  if d2i < dr2:
36  choice = arbitration(j,l)
37  if choice == j:
38  # if the two match, and we prefer the jet, then drop the lepton and be done
39  goodlep[il] = False
40  break
41  elif choice == (j,l) or choice == (l,j):
42  # asked to keep both, so we don't consider this match
43  continue
44  if d2i < d2m:
45  ibest, d2m = i, d2i
46  # this lepton has been killed by a jet, then we clean the jet that best matches it
47  if not goodlep[il]: continue
48  if ibest != -1: goodjet[ibest] = False
49  return ( [ j for (i ,j) in enumerate(jets) if goodjet[i ] == True ],
50  [ l for (il,l) in enumerate(leptons) if goodlep[il] == True ] )
51 
52 
53 
54 def shiftJERfactor(JERShift, aeta):
55  factor = 1.079 + JERShift*0.026
56  if aeta > 3.2: factor = 1.056 + JERShift * 0.191
57  elif aeta > 2.8: factor = 1.395 + JERShift * 0.063
58  elif aeta > 2.3: factor = 1.254 + JERShift * 0.062
59  elif aeta > 1.7: factor = 1.208 + JERShift * 0.046
60  elif aeta > 1.1: factor = 1.121 + JERShift * 0.029
61  elif aeta > 0.5: factor = 1.099 + JERShift * 0.028
62  return factor
63 
64 
65 
66 
67 
69  """Taken from RootTools.JetAnalyzer, simplified, modified, added corrections """
70  def __init__(self, cfg_ana, cfg_comp, looperName):
71  super(JetAnalyzer,self).__init__(cfg_ana, cfg_comp, looperName)
72  mcGT = cfg_ana.mcGT if hasattr(cfg_ana,'mcGT') else "PHYS14_25_V2"
73  dataGT = cfg_ana.dataGT if hasattr(cfg_ana,'dataGT') else "GR_70_V2_AN1"
74  self.shiftJEC = self.cfg_ana.shiftJEC if hasattr(self.cfg_ana, 'shiftJEC') else 0
75  self.recalibrateJets = self.cfg_ana.recalibrateJets
76  self.addJECShifts = self.cfg_ana.addJECShifts if hasattr(self.cfg_ana, 'addJECShifts') else 0
77  if self.recalibrateJets == "MC" : self.recalibrateJets = self.cfg_comp.isMC
78  elif self.recalibrateJets == "Data": self.recalibrateJets = not self.cfg_comp.isMC
79  elif self.recalibrateJets not in [True,False]: raise RuntimeError("recalibrateJets must be any of { True, False, 'MC', 'Data' }, while it is %r " % self.recalibrateJets)
80 
81  calculateSeparateCorrections = getattr(cfg_ana,"calculateSeparateCorrections", False);
82  calculateType1METCorrection = getattr(cfg_ana,"calculateType1METCorrection", False);
83  self.doJEC = self.recalibrateJets or (self.shiftJEC != 0) or self.addJECShifts or calculateSeparateCorrections or calculateType1METCorrection
84  if self.doJEC:
85  doResidual = getattr(cfg_ana, 'applyL2L3Residual', 'Data')
86  if doResidual == "MC": doResidual = self.cfg_comp.isMC
87  elif doResidual == "Data": doResidual = not self.cfg_comp.isMC
88  elif doResidual not in [True,False]: raise RuntimeError("If specified, applyL2L3Residual must be any of { True, False, 'MC', 'Data'(default)}")
89  GT = getattr(cfg_comp, 'jecGT', mcGT if self.cfg_comp.isMC else dataGT)
90  # Now take care of the optional arguments
91  kwargs = { 'calculateSeparateCorrections':calculateSeparateCorrections,
92  'calculateType1METCorrection' :calculateType1METCorrection, }
93  if kwargs['calculateType1METCorrection']: kwargs['type1METParams'] = cfg_ana.type1METParams
94  # instantiate the jet re-calibrator
95  self.jetReCalibrator = JetReCalibrator(GT, cfg_ana.recalibrationType, doResidual, cfg_ana.jecPath, **kwargs)
96  self.doPuId = getattr(self.cfg_ana, 'doPuId', True)
97  self.jetLepDR = getattr(self.cfg_ana, 'jetLepDR', 0.4)
98  self.jetLepArbitration = getattr(self.cfg_ana, 'jetLepArbitration', lambda jet,lepton: lepton)
99  self.lepPtMin = getattr(self.cfg_ana, 'minLepPt', -1)
100  self.lepSelCut = getattr(self.cfg_ana, 'lepSelCut', lambda lep : True)
101  self.jetGammaDR = getattr(self.cfg_ana, 'jetGammaDR', 0.4)
102  self.jetGammaLepDR = getattr(self.cfg_ana, 'jetGammaLepDR', 0.4)
103  self.cleanFromLepAndGammaSimultaneously = getattr(self.cfg_ana, 'cleanFromLepAndGammaSimultaneously', False)
105  if hasattr(self.cfg_ana, 'jetGammaLepDR'):
106  self.jetGammaLepDR = self.jetGammaLepDR
107  elif (self.jetGammaDR == self.jetLepDR):
108  self.jetGammaLepDR = self.jetGammaDR
109  else:
110  raise RuntimeError("DR for simultaneous cleaning of jets from leptons and photons is not defined, and dR(gamma, jet)!=dR(lep, jet)")
111  if(self.cfg_ana.doQG):
112  qgdefname="{CMSSW_BASE}/src/PhysicsTools/Heppy/data/pdfQG_AK4chs_13TeV_v2b.root"
113  self.qglcalc = QGLikelihoodCalculator(getattr(self.cfg_ana,"QGpath",qgdefname).format(CMSSW_BASE= os.environ['CMSSW_BASE']))
114  if not hasattr(self.cfg_ana ,"collectionPostFix"):self.cfg_ana.collectionPostFix=""
115 
116  def declareHandles(self):
117  super(JetAnalyzer, self).declareHandles()
118  self.handles['jets'] = AutoHandle( self.cfg_ana.jetCol, 'std::vector<pat::Jet>' )
119  self.handles['genJet'] = AutoHandle( self.cfg_ana.genJetCol, 'vector<reco::GenJet>' )
120  self.shiftJER = self.cfg_ana.shiftJER if hasattr(self.cfg_ana, 'shiftJER') else 0
121  self.addJERShifts = self.cfg_ana.addJERShifts if hasattr(self.cfg_ana, 'addJERShifts') else 0
122  self.handles['rho'] = AutoHandle( self.cfg_ana.rho, 'double' )
123 
124  def beginLoop(self, setup):
125  super(JetAnalyzer,self).beginLoop(setup)
126 
127  def process(self, event):
128  self.readCollections( event.input )
129  rho = float(self.handles['rho'].product()[0])
130  self.rho = rho
131 
132 
133  if self.cfg_ana.copyJetsByValue:
134  import ROOT
135  #from ROOT.heppy import JetUtils
136  allJets = map(lambda j:Jet(ROOT.heppy.JetUtils.copyJet(j)), self.handles['jets'].product()) #copy-by-value is safe if JetAnalyzer is ran more than once
137  else:
138  allJets = map(Jet, self.handles['jets'].product())
139 
140  #set dummy MC flavour for all jets in case we want to ntuplize discarded jets later
141  for jet in allJets:
142  jet.mcFlavour = 0
143 
144  self.deltaMetFromJEC = [0.,0.]
145  self.type1METCorr = [0.,0.,0.]
146 # print "before. rho",self.rho,self.cfg_ana.collectionPostFix,'allJets len ',len(allJets),'pt', [j.pt() for j in allJets]
147  if self.doJEC:
148  if not self.recalibrateJets: # check point that things won't change
149  jetsBefore = [ (j.pt(),j.eta(),j.phi(),j.rawFactor()) for j in allJets ]
150  self.jetReCalibrator.correctAll(allJets, rho, delta=self.shiftJEC,
151  addCorr=True, addShifts=self.addJECShifts,
152  metShift=self.deltaMetFromJEC, type1METCorr=self.type1METCorr )
153  if not self.recalibrateJets:
154  jetsAfter = [ (j.pt(),j.eta(),j.phi(),j.rawFactor()) for j in allJets ]
155  if len(jetsBefore) != len(jetsAfter):
156  print("ERROR: I had to recompute jet corrections, and they rejected some of the jets:\nold = %s\n new = %s\n" % (jetsBefore,jetsAfter))
157  else:
158  for (told, tnew) in zip(jetsBefore,jetsAfter):
159  if (deltaR2(told[1],told[2],tnew[1],tnew[2])) > 0.0001:
160  print("ERROR: I had to recompute jet corrections, and one jet direction moved: old = %s, new = %s\n" % (told, tnew))
161  elif abs(told[0]-tnew[0])/(told[0]+tnew[0]) > 0.5e-3 or abs(told[3]-tnew[3]) > 0.5e-3:
162  print("ERROR: I had to recompute jet corrections, and one jet pt or corr changed: old = %s, new = %s\n" % (told, tnew))
163  self.allJetsUsedForMET = allJets
164 # print "after. rho",self.rho,self.cfg_ana.collectionPostFix,'allJets len ',len(allJets),'pt', [j.pt() for j in allJets]
165 
166  if self.cfg_comp.isMC:
167  self.genJets = [ x for x in self.handles['genJet'].product() ]
168  if self.cfg_ana.do_mc_match:
169  for igj, gj in enumerate(self.genJets):
170  gj.index = igj
171 # self.matchJets(event, allJets)
172  self.matchJets(event, [ j for j in allJets if j.pt()>self.cfg_ana.jetPt ]) # To match only jets above chosen threshold
173  if getattr(self.cfg_ana, 'smearJets', False):
174  self.smearJets(event, allJets)
175 
176 
177 
178 
179 
180  allJets.sort(key = lambda j : j.pt(), reverse = True)
181 
182  leptons = []
183  if hasattr(event, 'selectedLeptons'):
184  leptons = [ l for l in event.selectedLeptons if l.pt() > self.lepPtMin and self.lepSelCut(l) ]
185  if self.cfg_ana.cleanJetsFromTaus and hasattr(event, 'selectedTaus'):
186  leptons = leptons[:] + event.selectedTaus
187  if self.cfg_ana.cleanJetsFromIsoTracks and hasattr(event, 'selectedIsoCleanTrack'):
188  leptons = leptons[:] + event.selectedIsoCleanTrack
189 
190 
191  self.jets = []
192  self.jetsFailId = []
193  self.jetsAllNoID = []
194  self.jetsIdOnly = []
195  for jet in allJets:
196  #Check if lepton and jet have overlapping PF candidates
197  leps_with_overlaps = []
198  if getattr(self.cfg_ana, 'checkLeptonPFOverlap', True):
199  for i in range(jet.numberOfSourceCandidatePtrs()):
200  p1 = jet.sourceCandidatePtr(i) #Ptr<Candidate> p1
201  for lep in leptons:
202  for j in range(lep.numberOfSourceCandidatePtrs()):
203  p2 = lep.sourceCandidatePtr(j)
204  has_overlaps = p1.key() == p2.key() and p1.refCore().id().productIndex() == p2.refCore().id().productIndex() and p1.refCore().id().processIndex() == p2.refCore().id().processIndex()
205  if has_overlaps:
206  leps_with_overlaps += [lep]
207  if len(leps_with_overlaps)>0:
208  for lep in leps_with_overlaps:
209  lep.jetOverlap = jet
210  if self.testJetNoID( jet ):
211  self.jetsAllNoID.append(jet)
212  if(self.cfg_ana.doQG):
213  jet.qgl_calc = self.qglcalc.computeQGLikelihood
214  jet.qgl_rho = rho
215  if self.testJetID( jet ):
216  self.jets.append(jet)
217  self.jetsIdOnly.append(jet)
218  else:
219  self.jetsFailId.append(jet)
220  elif self.testJetID (jet ):
221  self.jetsIdOnly.append(jet)
222 
223  jetsEtaCut = [j for j in self.jets if abs(j.eta()) < self.cfg_ana.jetEta ]
224  self.cleanJetsAll, cleanLeptons = cleanJetsAndLeptons(jetsEtaCut, leptons, self.jetLepDR, self.jetLepArbitration)
225 
226  self.cleanJets = [j for j in self.cleanJetsAll if abs(j.eta()) < self.cfg_ana.jetEtaCentral ]
227  self.cleanJetsFwd = [j for j in self.cleanJetsAll if abs(j.eta()) >= self.cfg_ana.jetEtaCentral ]
228  self.discardedJets = [j for j in self.jets if j not in self.cleanJetsAll]
229  if hasattr(event, 'selectedLeptons') and self.cfg_ana.cleanSelectedLeptons:
230  event.discardedLeptons = [ l for l in leptons if l not in cleanLeptons ]
231  event.selectedLeptons = [ l for l in event.selectedLeptons if l not in event.discardedLeptons ]
232  for lep in leptons:
233  if hasattr(lep, "jetOverlap"):
234  if lep.jetOverlap in self.cleanJetsAll:
235  #print "overlap reco", lep.p4().pt(), lep.p4().eta(), lep.p4().phi(), lep.jetOverlap.p4().pt(), lep.jetOverlap.p4().eta(), lep.jetOverlap.p4().phi()
236  lep.jetOverlapIdx = self.cleanJetsAll.index(lep.jetOverlap)
237  elif lep.jetOverlap in self.discardedJets:
238  #print "overlap discarded", lep.p4().pt(), lep.p4().eta(), lep.p4().phi(), lep.jetOverlap.p4().pt(), lep.jetOverlap.p4().eta(), lep.jetOverlap.p4().phi()
239  lep.jetOverlapIdx = 1000 + self.discardedJets.index(lep.jetOverlap)
240 
241 
242  self.noIdCleanJetsAll, cleanLeptons = cleanJetsAndLeptons(self.jetsAllNoID, leptons, self.jetLepDR, self.jetLepArbitration)
243  self.noIdCleanJets = [j for j in self.noIdCleanJetsAll if abs(j.eta()) < self.cfg_ana.jetEtaCentral ]
244  self.noIdCleanJetsFwd = [j for j in self.noIdCleanJetsAll if abs(j.eta()) >= self.cfg_ana.jetEtaCentral ]
245  self.noIdDiscardedJets = [j for j in self.jetsAllNoID if j not in self.noIdCleanJetsAll]
246 
247 
248  photons = []
249  if hasattr(event, 'selectedPhotons'):
250  if self.cfg_ana.cleanJetsFromFirstPhoton:
251  photons = event.selectedPhotons[:1]
252  else:
253  photons = [ g for g in event.selectedPhotons ]
254 
257 
259  self.gamma_cleanJetsAll = cleanNearestJetOnly(jetsEtaCut, photons+leptons, self.jetGammaLepDR)
260  self.gamma_noIdCleanJetsAll = cleanNearestJetOnly(self.jetsAllNoID, photons+leptons, self.jetGammaLepDR)
261  else:
264 
265  self.gamma_cleanJets = [j for j in self.gamma_cleanJetsAll if abs(j.eta()) < self.cfg_ana.jetEtaCentral ]
266  self.gamma_cleanJetsFwd = [j for j in self.gamma_cleanJetsAll if abs(j.eta()) >= self.cfg_ana.jetEtaCentral ]
267 
268  self.gamma_noIdCleanJets = [j for j in self.gamma_noIdCleanJetsAll if abs(j.eta()) < self.cfg_ana.jetEtaCentral ]
269  self.gamma_noIdCleanJetsFwd = [j for j in self.gamma_noIdCleanJetsAll if abs(j.eta()) >= self.cfg_ana.jetEtaCentral ]
270 
271 
272  if self.cfg_ana.alwaysCleanPhotons:
273  self.cleanJets = self.gamma_cleanJets
275  self.cleanJetsFwd = self.gamma_cleanJetsFwd
276  #
280 
281 
283  for jet in self.noIdCleanJetsAll:
284  if not self.testJetID( jet ):
285  self.cleanJetsFailIdAll.append(jet)
286 
287  self.cleanJetsFailId = [j for j in self.cleanJetsFailIdAll if abs(j.eta()) < self.cfg_ana.jetEtaCentral ]
288 
289 
291  for jet in self.gamma_noIdCleanJetsAll:
292  if not self.testJetID( jet ):
294 
295  self.gamma_cleanJetsFailId = [j for j in self.gamma_cleanJetsFailIdAll if abs(j.eta()) < self.cfg_ana.jetEtaCentral ]
296 
297 
298  incleptons = event.inclusiveLeptons if hasattr(event, 'inclusiveLeptons') else event.selectedLeptons
299  jlpairs = matchObjectCollection(incleptons, allJets, self.jetLepDR**2)
300 
301  for jet in allJets:
302  jet.leptons = [l for l in jlpairs if jlpairs[l] == jet ]
303  for lep in incleptons:
304  jet = jlpairs[lep]
305  if jet is None:
306  setattr(lep,"jet"+self.cfg_ana.collectionPostFix,lep)
307  else:
308  setattr(lep,"jet"+self.cfg_ana.collectionPostFix,jet)
309 
310  taus = getattr(event,'selectedTaus',[])
311  jtaupairs = matchObjectCollection( taus, allJets, self.jetLepDR**2)
312 
313  for jet in allJets:
314  jet.taus = [l for l in jtaupairs if jtaupairs[l] == jet ]
315  for tau in taus:
316  setattr(tau,"jet"+self.cfg_ana.collectionPostFix,jtaupairs[tau])
317 
318  #MC stuff
319  if self.cfg_comp.isMC:
321  for j in self.cleanJetsAll:
322  if hasattr(j, 'deltaMetFromJetSmearing'):
323  self.deltaMetFromJetSmearing[0] += j.deltaMetFromJetSmearing[0]
324  self.deltaMetFromJetSmearing[1] += j.deltaMetFromJetSmearing[1]
325 
326  self.cleanGenJets = cleanNearestJetOnly(self.genJets, leptons, self.jetLepDR)
327 
328  if self.cfg_ana.cleanGenJetsFromPhoton:
329  self.cleanGenJets = cleanNearestJetOnly(self.cleanGenJets, photons, self.jetLepDR)
330 
331  if getattr(self.cfg_ana, 'attachNeutrinos', True) and hasattr(self.cfg_ana,"genNuSelection") :
332  jetNus=[x for x in event.genParticles if abs(x.pdgId()) in [12,14,16] and self.cfg_ana.genNuSelection(x) ]
333  pairs= matchObjectCollection (jetNus, self.genJets, 0.4**2)
334 
335  for (nu,genJet) in six.iteritems(pairs) :
336  if genJet is not None :
337  if not hasattr(genJet,"nu") :
338  genJet.nu=nu.p4()
339  else :
340  genJet.nu+=nu.p4()
341 
342 
343  if self.cfg_ana.do_mc_match:
344  self.jetFlavour(event)
345 
346  if hasattr(event,"jets"+self.cfg_ana.collectionPostFix): raise RuntimeError("Event already contains a jet collection with the following postfix: "+self.cfg_ana.collectionPostFix)
347  setattr(event,"rho" +self.cfg_ana.collectionPostFix, self.rho )
348  setattr(event,"deltaMetFromJEC" +self.cfg_ana.collectionPostFix, self.deltaMetFromJEC )
349  setattr(event,"type1METCorr" +self.cfg_ana.collectionPostFix, self.type1METCorr )
350  setattr(event,"allJetsUsedForMET" +self.cfg_ana.collectionPostFix, self.allJetsUsedForMET )
351  setattr(event,"jets" +self.cfg_ana.collectionPostFix, self.jets )
352  setattr(event,"jetsFailId" +self.cfg_ana.collectionPostFix, self.jetsFailId )
353  setattr(event,"jetsAllNoID" +self.cfg_ana.collectionPostFix, self.jetsAllNoID )
354  setattr(event,"jetsIdOnly" +self.cfg_ana.collectionPostFix, self.jetsIdOnly )
355  setattr(event,"cleanJetsAll" +self.cfg_ana.collectionPostFix, self.cleanJetsAll )
356  setattr(event,"cleanJets" +self.cfg_ana.collectionPostFix, self.cleanJets )
357  setattr(event,"cleanJetsFwd" +self.cfg_ana.collectionPostFix, self.cleanJetsFwd )
358  setattr(event,"cleanJetsFailIdAll" +self.cfg_ana.collectionPostFix, self.cleanJetsFailIdAll )
359  setattr(event,"cleanJetsFailId" +self.cfg_ana.collectionPostFix, self.cleanJetsFailId )
360  setattr(event,"discardedJets" +self.cfg_ana.collectionPostFix, self.discardedJets )
361  setattr(event,"gamma_cleanJetsAll" +self.cfg_ana.collectionPostFix, self.gamma_cleanJetsAll )
362  setattr(event,"gamma_cleanJets" +self.cfg_ana.collectionPostFix, self.gamma_cleanJets )
363  setattr(event,"gamma_cleanJetsFwd" +self.cfg_ana.collectionPostFix, self.gamma_cleanJetsFwd )
364  setattr(event,"gamma_cleanJetsFailIdAll" +self.cfg_ana.collectionPostFix, self.gamma_cleanJetsFailIdAll )
365  setattr(event,"gamma_cleanJetsFailId" +self.cfg_ana.collectionPostFix, self.gamma_cleanJetsFailId )
366 
367 
368  if self.cfg_comp.isMC:
369  setattr(event,"deltaMetFromJetSmearing"+self.cfg_ana.collectionPostFix, self.deltaMetFromJetSmearing)
370  setattr(event,"cleanGenJets" +self.cfg_ana.collectionPostFix, self.cleanGenJets )
371  setattr(event,"genJets" +self.cfg_ana.collectionPostFix, self.genJets )
372  if self.cfg_ana.do_mc_match:
373  setattr(event,"bqObjects" +self.cfg_ana.collectionPostFix, self.bqObjects )
374  setattr(event,"cqObjects" +self.cfg_ana.collectionPostFix, self.cqObjects )
375  setattr(event,"partons" +self.cfg_ana.collectionPostFix, self.partons )
376  setattr(event,"heaviestQCDFlavour" +self.cfg_ana.collectionPostFix, self.heaviestQCDFlavour )
377 
378 
379  return True
380 
381 
382 
383  def testJetID(self, jet):
384  jet.puJetIdPassed = jet.puJetId()
385  jet.pfJetIdPassed = jet.jetID('POG_PFID_Loose')
386  if self.cfg_ana.relaxJetId:
387  return True
388  else:
389  return jet.pfJetIdPassed and (jet.puJetIdPassed or not(self.doPuId))
390 
391  def testJetNoID( self, jet ):
392  # 2 is loose pile-up jet id
393  return jet.pt() > self.cfg_ana.jetPt and \
394  abs( jet.eta() ) < self.cfg_ana.jetEta;
395 
396  def jetFlavour(self,event):
397  def isFlavour(x,f):
398  id = abs(x.pdgId())
399  if id > 999: return (id/1000)%10 == f
400  if id > 99: return (id/100)%10 == f
401  return id % 100 == f
402 
403 
404 
405  self.bqObjects = [ p for p in event.genParticles if (p.status() == 2 and isFlavour(p,5)) ]
406  self.cqObjects = [ p for p in event.genParticles if (p.status() == 2 and isFlavour(p,4)) ]
407 
408  self.partons = [ p for p in event.genParticles if ((p.status() == 23 or p.status() == 3) and abs(p.pdgId())>0 and (abs(p.pdgId()) in [1,2,3,4,5,21]) ) ]
410  self.partons,
411  deltaRMax = 0.3)
412 
413  for jet in self.cleanJetsAll:
414  parton = match[jet]
415  jet.partonId = (parton.pdgId() if parton != None else 0)
416  jet.partonMotherId = (parton.mother(0).pdgId() if parton != None and parton.numberOfMothers()>0 else 0)
417 
418  for jet in self.jets:
419  (bmatch, dr) = bestMatch(jet, self.bqObjects)
420  if dr < 0.4:
421  jet.mcFlavour = 5
422  else:
423  (cmatch, dr) = bestMatch(jet, self.cqObjects)
424  if dr < 0.4:
425  jet.mcFlavour = 4
426  else:
427  jet.mcFlavour = 0
428 
429  self.heaviestQCDFlavour = 5 if len(self.bqObjects) else (4 if len(self.cqObjects) else 1);
430 
431  def matchJets(self, event, jets):
432  match = matchObjectCollection2(jets,
433  event.genbquarks + event.genwzquarks,
434  deltaRMax = 0.3)
435  for jet in jets:
436  gen = match[jet]
437  jet.mcParton = gen
438  jet.mcMatchId = (gen.sourceId if gen != None else 0)
439  jet.mcMatchFlav = (abs(gen.pdgId()) if gen != None else 0)
440 
441  match = matchObjectCollection2(jets,
442  self.genJets,
443  deltaRMax = 0.3)
444  for jet in jets:
445  jet.mcJet = match[jet]
446 
447 
448 
449  def smearJets(self, event, jets):
450  # https://twiki.cern.ch/twiki/bin/viewauth/CMS/TWikiTopRefSyst#Jet_energy_resolution
451  for jet in jets:
452  gen = jet.mcJet
453  if gen != None:
454  genpt, jetpt, aeta = gen.pt(), jet.pt(), abs(jet.eta())
455  # from https://twiki.cern.ch/twiki/bin/view/CMS/JetResolution
456  #8 TeV tables
457  factor = shiftJERfactor(self.shiftJER, aeta)
458  ptscale = max(0.0, (jetpt + (factor-1)*(jetpt-genpt))/jetpt)
459  #print "get with pt %.1f (gen pt %.1f, ptscale = %.3f)" % (jetpt,genpt,ptscale)
460  jet.deltaMetFromJetSmearing = [ -(ptscale-1)*jet.rawFactor()*jet.px(), -(ptscale-1)*jet.rawFactor()*jet.py() ]
461  if ptscale != 0:
462  jet.setP4(jet.p4()*ptscale)
463  # leave the uncorrected unchanged for sync
464  jet.setRawFactor(jet.rawFactor()/ptscale)
465  #else: print "jet with pt %.1d, eta %.2f is unmatched" % (jet.pt(), jet.eta())
466  if (self.shiftJER==0) and (self.addJERShifts):
467  setattr(jet, "corrJER", ptscale )
468  factorJERUp= shiftJERfactor(1, aeta)
469  ptscaleJERUp = max(0.0, (jetpt + (factorJERUp-1)*(jetpt-genpt))/jetpt)
470  setattr(jet, "corrJERUp", ptscaleJERUp)
471  factorJERDown= shiftJERfactor(-1, aeta)
472  ptscaleJERDown = max(0.0, (jetpt + (factorJERDown-1)*(jetpt-genpt))/jetpt)
473  setattr(jet, "corrJERDown", ptscaleJERDown)
474 
475 
476 
477 
478 
479 setattr(JetAnalyzer,"defaultConfig", cfg.Analyzer(
480  class_object = JetAnalyzer,
481  jetCol = 'slimmedJets',
482  copyJetsByValue = False, #Whether or not to copy the input jets or to work with references (should be 'True' if JetAnalyzer is run more than once)
483  genJetCol = 'slimmedGenJets',
484  rho = ('fixedGridRhoFastjetAll','',''),
485  jetPt = 25.,
486  jetEta = 4.7,
487  jetEtaCentral = 2.4,
488  jetLepDR = 0.4,
489  jetLepArbitration = (lambda jet,lepton : lepton), # you can decide which to keep in case of overlaps; e.g. if the jet is b-tagged you might want to keep the jet
490  cleanSelectedLeptons = True, #Whether to clean 'selectedLeptons' after disambiguation. Treat with care (= 'False') if running Jetanalyzer more than once
491  minLepPt = 10,
492  lepSelCut = lambda lep : True,
493  relaxJetId = False,
494  doPuId = False, # Not commissioned in 7.0.X
495  doQG = False,
496  checkLeptonPFOverlap = True,
497  recalibrateJets = False,
498  applyL2L3Residual = 'Data', # if recalibrateJets, apply L2L3Residual to Data only
499  recalibrationType = "AK4PFchs",
500  shiftJEC = 0, # set to +1 or -1 to apply +/-1 sigma shift to the nominal jet energies
501  addJECShifts = False, # if true, add "corr", "corrJECUp", and "corrJECDown" for each jet (requires uncertainties to be available!)
502  smearJets = True,
503  shiftJER = 0, # set to +1 or -1 to get +/-1 sigma shifts
504  jecPath = "",
505  calculateSeparateCorrections = False,
506  calculateType1METCorrection = False,
507  type1METParams = { 'jetPtThreshold':15., 'skipEMfractionThreshold':0.9, 'skipMuons':True },
508  addJERShifts = 0, # add +/-1 sigma shifts to jets, intended to be used with shiftJER=0
509  cleanJetsFromFirstPhoton = False,
510  cleanJetsFromTaus = False,
511  cleanJetsFromIsoTracks = False,
512  alwaysCleanPhotons = False,
513  do_mc_match=True,
514  cleanGenJetsFromPhoton = False,
515  jetGammaDR=0.4,
516  cleanFromLepAndGammaSimultaneously = False,
517  jetGammaLepDR=0.4,
518  attachNeutrinos = True,
519  genNuSelection = lambda nu : True, #FIXME: add here check for ispromptfinalstate
520  collectionPostFix = ""
521  )
522 )
FastTimerService_cff.range
range
Definition: FastTimerService_cff.py:34
objects.JetAnalyzer.JetAnalyzer.bqObjects
bqObjects
Definition: JetAnalyzer.py:405
deltar.matchObjectCollection
def matchObjectCollection(objects, matchCollection, deltaR2Max, filter=lambda x, True y)
Definition: deltar.py:151
objects.JetAnalyzer.JetAnalyzer.shiftJER
shiftJER
Definition: JetAnalyzer.py:503
objects.JetAnalyzer.JetAnalyzer.noIdDiscardedJets
noIdDiscardedJets
Definition: JetAnalyzer.py:245
objects.JetAnalyzer.JetAnalyzer.deltaMetFromJetSmearing
deltaMetFromJetSmearing
Associate jets to leptons.
Definition: JetAnalyzer.py:320
dqmMemoryStats.float
float
Definition: dqmMemoryStats.py:127
objects.JetAnalyzer.JetAnalyzer.noIdCleanJetsAll
noIdCleanJetsAll
Definition: JetAnalyzer.py:278
objects.JetAnalyzer.JetAnalyzer.partons
partons
Definition: JetAnalyzer.py:408
objects.JetAnalyzer.JetAnalyzer.lepPtMin
lepPtMin
Definition: JetAnalyzer.py:99
objects.JetAnalyzer.JetAnalyzer.qglcalc
qglcalc
Definition: JetAnalyzer.py:113
objects.JetAnalyzer.JetAnalyzer.cleanJetsFailIdAll
cleanJetsFailIdAll
Jet Id, after jet/lepton cleaning.
Definition: JetAnalyzer.py:282
objects.JetAnalyzer.JetAnalyzer.matchJets
def matchJets(self, event, jets)
Definition: JetAnalyzer.py:431
objects.JetAnalyzer.JetAnalyzer.gamma_noIdCleanJets
gamma_noIdCleanJets
Definition: JetAnalyzer.py:268
objects.JetAnalyzer.JetAnalyzer.discardedJets
discardedJets
Definition: JetAnalyzer.py:228
if
if(0==first)
Definition: CAHitNtupletGeneratorKernelsImpl.h:48
objects.JetAnalyzer.JetAnalyzer.cqObjects
cqObjects
Definition: JetAnalyzer.py:406
objects.JetAnalyzer.JetAnalyzer.genNuSelection
genNuSelection
Definition: JetAnalyzer.py:519
objects.JetAnalyzer.JetAnalyzer.recalibrateJets
recalibrateJets
Definition: JetAnalyzer.py:497
objects.JetAnalyzer.JetAnalyzer.beginLoop
def beginLoop(self, setup)
Definition: JetAnalyzer.py:124
deltar.bestMatch
def bestMatch(object, matchCollection)
Definition: deltar.py:138
deltar.matchObjectCollection2
def matchObjectCollection2(objects, matchCollection, deltaRMax=0.3)
Definition: deltar.py:166
objects.JetAnalyzer.JetAnalyzer.__init__
def __init__(self, cfg_ana, cfg_comp, looperName)
Definition: JetAnalyzer.py:70
objects.JetAnalyzer.JetAnalyzer.lepSelCut
lepSelCut
Definition: JetAnalyzer.py:492
objects.JetAnalyzer.JetAnalyzer.gamma_cleanJetsFwd
gamma_cleanJetsFwd
Definition: JetAnalyzer.py:266
objects.JetAnalyzer.JetAnalyzer.cleanGenJets
cleanGenJets
Definition: JetAnalyzer.py:326
objects.JetAnalyzer.JetAnalyzer.noIdCleanJets
noIdCleanJets
First cleaning, then Jet Id.
Definition: JetAnalyzer.py:243
objects.JetAnalyzer.JetAnalyzer.addJERShifts
addJERShifts
Definition: JetAnalyzer.py:508
objects.JetAnalyzer.JetAnalyzer.allJetsUsedForMET
allJetsUsedForMET
Definition: JetAnalyzer.py:163
objects.JetAnalyzer.JetAnalyzer.gamma_noIdCleanJetsAll
gamma_noIdCleanJetsAll
Definition: JetAnalyzer.py:256
objects.JetAnalyzer.JetAnalyzer.cleanJetsAll
cleanJetsAll
Definition: JetAnalyzer.py:274
objects.JetAnalyzer.JetAnalyzer.shiftJEC
shiftJEC
Definition: JetAnalyzer.py:500
Jet
Definition: Jet.py:1
objects.JetAnalyzer.shiftJERfactor
def shiftJERfactor(JERShift, aeta)
Definition: JetAnalyzer.py:54
objects.JetAnalyzer.JetAnalyzer.gamma_cleanJetsFailIdAll
gamma_cleanJetsFailIdAll
Jet Id, after jet/photon cleaning.
Definition: JetAnalyzer.py:290
objects.JetAnalyzer.JetAnalyzer
Definition: JetAnalyzer.py:68
objects.JetAnalyzer.JetAnalyzer.gamma_cleanJets
gamma_cleanJets
Definition: JetAnalyzer.py:265
objects.JetAnalyzer.JetAnalyzer.genJets
genJets
Definition: JetAnalyzer.py:167
objects.JetAnalyzer.JetAnalyzer.cleanFromLepAndGammaSimultaneously
cleanFromLepAndGammaSimultaneously
Definition: JetAnalyzer.py:516
objects.JetAnalyzer.JetAnalyzer.jetsAllNoID
jetsAllNoID
Definition: JetAnalyzer.py:193
objects.JetAnalyzer.JetAnalyzer.testJetNoID
def testJetNoID(self, jet)
Definition: JetAnalyzer.py:391
remoteMonitoring_LED_IterMethod_cfg.Analyzer
Analyzer
Definition: remoteMonitoring_LED_IterMethod_cfg.py:32
objects.JetAnalyzer.JetAnalyzer.jetLepArbitration
jetLepArbitration
Definition: JetAnalyzer.py:489
objects.JetAnalyzer.JetAnalyzer.smearJets
smearJets
Definition: JetAnalyzer.py:502
objects.JetAnalyzer.JetAnalyzer.jetFlavour
def jetFlavour(self, event)
Definition: JetAnalyzer.py:396
print
void print(TMatrixD &m, const char *label=nullptr, bool mathematicaFormat=false)
Definition: Utilities.cc:46
SiStripPI::max
Definition: SiStripPayloadInspectorHelper.h:169
objects.JetAnalyzer.JetAnalyzer.jets
jets
Sort Jets by pT.
Definition: JetAnalyzer.py:191
objects.JetAnalyzer.JetAnalyzer.gamma_cleanJetaAll
gamma_cleanJetaAll
Clean Jets from photons (first cleaning, then Jet Id)
Definition: JetAnalyzer.py:255
mps_setup.append
append
Definition: mps_setup.py:85
objects.JetAnalyzer.cleanJetsAndLeptons
def cleanJetsAndLeptons(jets, leptons, deltaR, arbitration)
Definition: JetAnalyzer.py:27
objects.JetAnalyzer.cleanNearestJetOnly
def cleanNearestJetOnly(jets, leptons, deltaR)
Definition: JetAnalyzer.py:15
objects.JetAnalyzer.JetAnalyzer.testJetID
def testJetID(self, jet)
Definition: JetAnalyzer.py:383
objects.JetAnalyzer.JetAnalyzer.rho
rho
Definition: JetAnalyzer.py:484
objects.JetAnalyzer.JetAnalyzer.addJECShifts
addJECShifts
Definition: JetAnalyzer.py:501
objects.JetAnalyzer.JetAnalyzer.doPuId
doPuId
Definition: JetAnalyzer.py:494
objects.JetAnalyzer.JetAnalyzer.jetReCalibrator
jetReCalibrator
Definition: JetAnalyzer.py:95
objects.JetAnalyzer.JetAnalyzer.jetGammaLepDR
jetGammaLepDR
Definition: JetAnalyzer.py:517
EgammaValidation_cff.pdgId
pdgId
Definition: EgammaValidation_cff.py:118
objects.JetAnalyzer.JetAnalyzer.jetsIdOnly
jetsIdOnly
Definition: JetAnalyzer.py:194
objects.JetAnalyzer.JetAnalyzer.gamma_cleanJetsAll
gamma_cleanJetsAll
Definition: JetAnalyzer.py:259
objects.JetAnalyzer.JetAnalyzer.declareHandles
def declareHandles(self)
Definition: JetAnalyzer.py:116
objects.JetAnalyzer.JetAnalyzer.cleanJetsFailId
cleanJetsFailId
Definition: JetAnalyzer.py:287
objects.JetAnalyzer.JetAnalyzer.doJEC
doJEC
Definition: JetAnalyzer.py:83
ComparisonHelper::zip
OutputIterator zip(InputIterator1 first1, InputIterator1 last1, InputIterator2 first2, InputIterator2 last2, OutputIterator result, Compare comp)
Definition: L1TStage2CaloLayer1.h:41
objects.JetAnalyzer.JetAnalyzer.process
def process(self, event)
Definition: JetAnalyzer.py:127
objects.JetAnalyzer.JetAnalyzer.gamma_cleanJetsFailId
gamma_cleanJetsFailId
Definition: JetAnalyzer.py:295
QGLikelihoodCalculator
Definition: QGLikelihoodCalculator.py:1
JetReCalibrator
Definition: JetReCalibrator.py:1
objects.JetAnalyzer.JetAnalyzer.jetsFailId
jetsFailId
Definition: JetAnalyzer.py:192
HLTMuonOfflineAnalyzer_cfi.deltaR2
deltaR2
Definition: HLTMuonOfflineAnalyzer_cfi.py:105
triggerObjects_cff.id
id
Definition: triggerObjects_cff.py:29
objects.JetAnalyzer.JetAnalyzer.noIdCleanJetsFwd
noIdCleanJetsFwd
Definition: JetAnalyzer.py:244
objects.JetAnalyzer.JetAnalyzer.deltaMetFromJEC
deltaMetFromJEC
Read jets, if necessary recalibrate and shift MET.
Definition: JetAnalyzer.py:144
objects.JetAnalyzer.JetAnalyzer.cleanJetsFwd
cleanJetsFwd
Definition: JetAnalyzer.py:227
format
objects.JetAnalyzer.JetAnalyzer.jetGammaDR
jetGammaDR
Definition: JetAnalyzer.py:515
AlignmentPI::index
index
Definition: AlignmentPayloadInspectorHelper.h:46
objects.JetAnalyzer.JetAnalyzer.type1METCorr
type1METCorr
Definition: JetAnalyzer.py:145
objects.JetAnalyzer.JetAnalyzer.gamma_noIdCleanJetsFwd
gamma_noIdCleanJetsFwd
Definition: JetAnalyzer.py:269
deltar
funct::abs
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
genParticles_cff.map
map
Definition: genParticles_cff.py:11
objects.JetAnalyzer.JetAnalyzer.heaviestQCDFlavour
heaviestQCDFlavour
Definition: JetAnalyzer.py:429
objects.JetAnalyzer.JetAnalyzer.jetLepDR
jetLepDR
Definition: JetAnalyzer.py:488
objects.JetAnalyzer.JetAnalyzer.cleanJets
cleanJets
Definition: JetAnalyzer.py:226