CMS 3D CMS Logo

jetCollectionTools.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
4 
5 from CommonTools.PileupAlgos.Puppi_cff import puppi
6 from CommonTools.PileupAlgos.softKiller_cfi import softKiller
7 
8 from RecoJets.JetProducers.PFJetParameters_cfi import PFJetParameters
9 from RecoJets.JetProducers.GenJetParameters_cfi import GenJetParameters
10 from RecoJets.JetProducers.GenJetParameters_cfi import GenJetParameters
11 from RecoJets.JetProducers.AnomalousCellParameters_cfi import AnomalousCellParameters
12 
13 from RecoJets.JetProducers.ak4GenJets_cfi import ak4GenJets
14 from RecoJets.JetProducers.ak4PFJets_cfi import ak4PFJets, ak4PFJetsCHS, ak4PFJetsPuppi, ak4PFJetsSK, ak4PFJetsCS
15 from RecoJets.JetProducers.ak4CaloJets_cfi import ak4CaloJets
16 
18 from PhysicsTools.PatAlgos.recoLayer0.jetCorrFactors_cfi import patJetCorrFactors
19 from PhysicsTools.PatAlgos.mcMatchLayer0.jetFlavourId_cff import patJetFlavourAssociation
20 
21 from PhysicsTools.PatAlgos.tools.jetTools import supportedJetAlgos, addJetCollection, updateJetCollection
22 from PhysicsTools.PatAlgos.tools.helpers import getPatAlgosToolsTask, addToProcessAndTask
23 
24 import re
25 
26 #============================================
27 #
28 # GenJetInfo
29 #
30 #============================================
32  """
33  Class to hold information of a genjet collection
34  """
35  def __init__(self, jet, inputCollection):
36  self.jet = jet
37  self.jetLower = jet.lower()
38  self.jetUpper = jet.upper()
39  self.jetTagName = self.jetUpper
40  self.inputCollection = inputCollection
41  algoKey = 'algo'
42  sizeKey = 'size'
43  recoKey = 'reco'
44  jetRegex = re.compile(
45  r'(?P<{algo}>({algoList}))(?P<{size}>[0-9]+)gen'.format(
46  algo = algoKey,
47  algoList = '|'.join(supportedJetAlgos.keys()),
48  size = sizeKey,
49  )
50  )
51  jetMatch = jetRegex.match(jet.lower())
52  if not jetMatch:
53  raise RuntimeError('Invalid jet collection: %s' % jet)
54  self.jetAlgo = jetMatch.group(algoKey)
55  self.jetSize = jetMatch.group(sizeKey)
56  self.jetSizeNr = float(self.jetSize) / 10.
57 
58 #============================================
59 #
60 # GenJetAdder
61 #
62 #============================================
64  """
65  Tool to schedule modules for building a genjet collection with input MiniAODs
66  """
67  def __init__(self):
68  self.prerequisites = []
69  self.main = []
70  self.gpLabel = "prunedGenParticles"
71 
72  def addProcessAndTask(self, proc, label, module):
73  task = getPatAlgosToolsTask(proc)
74  addToProcessAndTask(label, module, proc, task)
75 
76  def addGenJetCollection(self,
77  proc,
78  jet,
79  inputCollection = "",
80  minPtFastjet = None,
81  ):
82  print("jetCollectionTools::GenJetAdder::addGenJetCollection: Adding Gen Jet Collection: {}".format(jet))
83 
84  #
85  # Decide which genJet collection we are dealing with
86  #
87  genJetInfo = GenJetInfo(jet,inputCollection)
88  jetLower = genJetInfo.jetLower
89  jetUpper = genJetInfo.jetUpper
90 
91  #=======================================================
92  #
93  # If genJet collection in MiniAOD is not
94  # specified, build the genjet collection.
95  #
96  #========================================================
97  if not inputCollection:
98  print("jetCollectionTools::GenJetAdder::addGenJetCollection: inputCollection not specified. Building genjet collection now")
99  #
100  # Setup GenParticles
101  #
102  packedGenPartNoNu = "packedGenParticlesForJetsNoNu"
103  if packedGenPartNoNu not in self.prerequisites:
104  self.addProcessAndTask(proc, packedGenPartNoNu, cms.EDFilter("CandPtrSelector",
105  src = cms.InputTag("packedGenParticles"),
106  cut = cms.string("abs(pdgId) != 12 && abs(pdgId) != 14 && abs(pdgId) != 16"),
107  )
108  )
109  self.prerequisites.append(packedGenPartNoNu)
110  #
111  # Create the GenJet collection
112  #
113  genJetsCollection = "{}{}{}".format(genJetInfo.jetAlgo.upper(), genJetInfo.jetSize, 'GenJetsNoNu')
114  self.addProcessAndTask(proc, genJetsCollection, ak4GenJets.clone(
115  src = packedGenPartNoNu,
116  jetAlgorithm = cms.string(supportedJetAlgos[genJetInfo.jetAlgo]),
117  rParam = cms.double(genJetInfo.jetSizeNr),
118  )
119  )
120  #
121  # Set minimum pt threshold of gen jets to be saved after fastjet clustering
122  #
123  if minPtFastjet != None:
124  getattr(proc, genJetsCollection).jetPtMin = minPtFastjet
125  self.prerequisites.append(genJetsCollection)
126 
127  return genJetInfo
128 #============================================
129 #
130 # RecoJetInfo
131 #
132 #============================================
134  """
135  Class to hold information of a recojet collection
136  """
137  def __init__(self, jet, inputCollection):
138  self.jet = jet
139  self.jetLower = jet.lower()
140  self.jetUpper = jet.upper()
141  self.jetTagName = self.jetUpper
142  self.inputCollection = inputCollection
143  algoKey = 'algo'
144  sizeKey = 'size'
145  recoKey = 'reco'
146  puMethodKey = 'puMethod'
147  jetRegex = re.compile(
148  r'(?P<{algo}>({algoList}))(?P<{size}>[0-9]+)(?P<{reco}>(pf|calo))(?P<{puMethod}>(chs|puppi|sk|cs|))'.format(
149  algo = algoKey,
150  algoList = '|'.join(supportedJetAlgos.keys()),
151  size = sizeKey,
152  reco = recoKey,
153  puMethod = puMethodKey,
154  )
155  )
156  jetMatch = jetRegex.match(jet.lower())
157  if not jetMatch:
158  raise RuntimeError('Invalid jet collection: %s' % jet)
159 
160  self.jetAlgo = jetMatch.group(algoKey)
161  self.jetSize = jetMatch.group(sizeKey)
162  self.jetReco = jetMatch.group(recoKey)
163  self.jetPUMethod = jetMatch.group(puMethodKey)
164 
165  self.jetSizeNr = float(self.jetSize) / 10.
166 
167  self.doCalo = self.jetReco == "calo"
168  self.doPF = self.jetReco == "pf"
169 
170  self.doCS = self.jetPUMethod == "cs"
171  self.skipUserData = self.doCalo or (self.jetPUMethod in [ "puppi", "sk" ] and inputCollection == "")
172 
173  self.jetCorrPayload = "{}{}{}".format(
174  self.jetAlgo.upper(), self.jetSize, "Calo" if self.doCalo else self.jetReco.upper()
175  )
176 
177  if self.jetPUMethod == "puppi":
178  self.jetCorrPayload += "Puppi"
179  elif self.jetPUMethod in [ "cs", "sk" ]:
180  self.jetCorrPayload += "chs"
181  else:
182  self.jetCorrPayload += self.jetPUMethod.lower()
183 
185 
186 #============================================
187 #
188 # RecoJetAdder
189 #
190 #============================================
192  """
193  Tool to schedule modules for building a patJet collection from MiniAODs
194  """
195  def __init__(self,runOnMC=True):
196  self.prerequisites = []
197  self.main = []
198  self.pfLabel = "packedPFCandidates"
199  self.pvLabel = "offlineSlimmedPrimaryVertices"
200  self.svLabel = "slimmedSecondaryVertices"
201  self.muLabel = "slimmedMuons"
202  self.elLabel = "slimmedElectrons"
203  self.gpLabel = "prunedGenParticles"
204  self.runOnMC = runOnMC
205  self.patJetsInMiniAOD = ["slimmedJets", "slimmedJetsAK8", "slimmedJetsPuppi", "slimmedCaloJets"]
206 
207  def addProcessAndTask(self, proc, label, module):
208  task = getPatAlgosToolsTask(proc)
209  addToProcessAndTask(label, module, proc, task)
210 
211  def addRecoJetCollection(self,
212  proc,
213  jet,
214  inputCollection = "",
215  minPtFastjet = None,
216  genJetsCollection = "",
217  bTagDiscriminators = ["None"],
218  JETCorrLevels = ["L1FastJet", "L2Relative", "L3Absolute", "L2L3Residual"],
219  ):
220  print("jetCollectionTools::RecoJetAdder::addRecoJetCollection: Adding Reco Jet Collection: {}".format(jet))
221 
222  currentTasks = []
223 
224  if inputCollection and inputCollection not in self.patJetsInMiniAOD:
225  raise RuntimeError("Invalid input collection: %s" % inputCollection)
226 
227  #=======================================================
228  #
229  # Figure out which jet collection we're dealing with
230  #
231  #=======================================================
232  recoJetInfo = RecoJetInfo(jet, inputCollection)
233  jetLower = recoJetInfo.jetLower
234  jetUpper = recoJetInfo.jetUpper
235  tagName = recoJetInfo.jetTagName
236 
237  if inputCollection == "slimmedJets":
238  assert(jetLower == "ak4pfchs")
239  elif inputCollection == "slimmedJetsAK8":
240  assert(jetLower == "ak8pfpuppi")
241  elif inputCollection == "slimmedJetsPuppi":
242  assert(jetLower == "ak4pfpuppi")
243  elif inputCollection == "slimmedCaloJets":
244  assert(jetLower == "ak4calo")
245 
246  #=======================================================
247  #
248  # If the patJet collection in MiniAOD is not specified,
249  # we have to build the patJet collection from scratch.
250  #
251  #========================================================
252  if not inputCollection or recoJetInfo.doCalo:
253  print("jetCollectionTools::RecoJetAdder::addRecoJetCollection: inputCollection not specified. Building recojet collection now")
254 
255  #=======================================================
256  #
257  # Prepare the inputs to jet clustering
258  #
259  #========================================================
260  #
261  # Specify PF candidates
262  #
263  pfCand = self.pfLabel
264  #
265  # Setup PU method for PF candidates
266  #
267  if recoJetInfo.jetPUMethod not in [ "", "cs" ]:
268  pfCand += recoJetInfo.jetPUMethod
269 
270 
271  #
272  # Setup modules to perform PU mitigation for
273  # PF candidates
274  #
275  if pfCand not in self.prerequisites:
276  #
277  # Skip if no PU Method or CS specified
278  #
279  if recoJetInfo.jetPUMethod in [ "", "cs" ]:
280  pass
281  #
282  # CHS
283  #
284  elif recoJetInfo.jetPUMethod == "chs":
285  self.addProcessAndTask(proc, pfCand, pfCHS.clone(
286  src = self.pfLabel))
287  self.prerequisites.append(pfCand)
288  #
289  # PUPPI
290  #
291  elif recoJetInfo.jetPUMethod == "puppi":
292  self.addProcessAndTask(proc, pfCand, puppi.clone(
293  candName = self.pfLabel,
294  vertexName = self.pvLabel,
295  )
296  )
297  self.prerequisites.append(pfCand)
298  #
299  # Softkiller
300  #
301  elif recoJetInfo.jetPUMethod == "sk":
302  self.addProcessAndTask(proc, pfCand, softKiller.clone(
303  PFCandidates = self.pfLabel,
304  rParam = recoJetInfo.jetSizeNr,
305  )
306  )
307  self.prerequisites.append(pfCand)
308  else:
309  raise RuntimeError("Currently unsupported PU method: '%s'" % recoJetInfo.jetPUMethod)
310 
311  #============================================
312  #
313  # Create the recojet collection
314  #
315  #============================================
316  if not recoJetInfo.doCalo:
317  jetCollection = '{}Collection'.format(jetUpper)
318 
319  if jetCollection in self.main:
320  raise ValueError("Step '%s' already implemented" % jetCollection)
321  #
322  # Cluster new jet
323  #
324  if recoJetInfo.jetPUMethod == "chs":
325  self.addProcessAndTask(proc, jetCollection, ak4PFJetsCHS.clone(
326  src = pfCand,
327  )
328  )
329  elif recoJetInfo.jetPUMethod == "puppi":
330  self.addProcessAndTask(proc, jetCollection, ak4PFJetsPuppi.clone(
331  src = self.pfLabel,
332  srcWeights = pfCand
333  )
334  )
335  elif recoJetInfo.jetPUMethod == "sk":
336  self.addProcessAndTask(proc, pfCand, ak4PFJetsSK.clone(
337  src = pfCand,
338  )
339  )
340  elif recoJetInfo.jetPUMethod == "cs":
341  self.addProcessAndTask(proc, jetCollection, ak4PFJetsCS.clone(
342  src = pfCand,
343  )
344  )
345  else:
346  self.addProcessAndTask(proc, jetCollection, ak4PFJets.clone(
347  src = pfCand,
348  )
349  )
350  getattr(proc, jetCollection).jetAlgorithm = supportedJetAlgos[recoJetInfo.jetAlgo]
351  getattr(proc, jetCollection).rParam = recoJetInfo.jetSizeNr
352  #
353  # Set minimum pt threshold of reco jets to be saved after fastjet clustering
354  #
355  if minPtFastjet != None:
356  getattr(proc, jetCollection).jetPtMin = minPtFastjet
357  currentTasks.append(jetCollection)
358  else:
359  jetCollection = inputCollection
360 
361 
362  #=============================================
363  #
364  # Make patJet collection
365  #
366  #=============================================
367  #
368  # Jet correction
369  #
370  if recoJetInfo.jetPUMethod == "puppi":
371  jetCorrLabel = "Puppi"
372  elif recoJetInfo.jetPUMethod in [ "cs", "sk" ]:
373  jetCorrLabel = "chs"
374  else:
375  jetCorrLabel = recoJetInfo.jetPUMethod
376 
377  jetCorrections = (
378  "{}{}{}{}".format(
379  recoJetInfo.jetAlgo.upper(),
380  recoJetInfo.jetSize,
381  "Calo" if recoJetInfo.doCalo else recoJetInfo.jetReco.upper(),
382  jetCorrLabel
383  ),
384  JETCorrLevels,
385  "None",
386  )
387 
388  postfix = "Recluster" if inputCollection == "" else ""
389  addJetCollection(
390  proc,
391  labelName = jetUpper,
392  postfix = postfix,
393  jetSource = cms.InputTag(jetCollection),
394  algo = recoJetInfo.jetAlgo,
395  rParam = recoJetInfo.jetSizeNr,
396  pvSource = cms.InputTag(self.pvLabel),
397  pfCandidates = cms.InputTag(self.pfLabel),
398  svSource = cms.InputTag(self.svLabel),
399  muSource = cms.InputTag(self.muLabel),
400  elSource = cms.InputTag(self.elLabel),
401  genJetCollection = cms.InputTag(genJetsCollection),
402  genParticles = cms.InputTag(self.gpLabel),
403  jetCorrections = jetCorrections,
404  )
405 
406  #
407  # Need to set this explicitly for PUPPI jets
408  #
409  if recoJetInfo.jetPUMethod == "puppi":
410  getattr(proc, "patJetFlavourAssociation{}{}".format(jetUpper,postfix)).weights = cms.InputTag(pfCand)
411 
412  getJetMCFlavour = not recoJetInfo.doCalo and recoJetInfo.jetPUMethod != "cs"
413  if not self.runOnMC: #Remove modules for Gen-level object matching
414  delattr(proc, 'patJetGenJetMatch{}{}'.format(jetUpper,postfix))
415  delattr(proc, 'patJetPartonMatch{}{}'.format(jetUpper,postfix))
416  getJetMCFlavour = False
417  setattr(getattr(proc, "patJets{}{}".format(jetUpper,postfix)), "getJetMCFlavour", cms.bool(getJetMCFlavour))
418 
419  selectedPatJets = "selectedPatJets{}{}".format(jetUpper,postfix)
420  #=============================================
421  #
422  # Update the patJet collection.
423  # This is where we setup
424  # - JEC
425  # - b-tagging discriminators
426  #
427  #=============================================
428  updateJetCollection(
429  proc,
430  labelName = jetUpper,
431  postfix = "Final",
432  jetSource = cms.InputTag(selectedPatJets),
433  jetCorrections = jetCorrections,
434  btagDiscriminators = bTagDiscriminators,
435  )
436 
437  recoJetInfo.patJetFinalCollection = "selectedUpdatedPatJets{}{}".format(jetUpper,"Final")
438  else:
439  recoJetInfo.patJetFinalCollection = inputCollection
440 
441  self.main.extend(currentTasks)
442 
443  return recoJetInfo
def __init__(self, runOnMC=True)
def addGenJetCollection(self, proc, jet, inputCollection="", minPtFastjet=None)
def addToProcessAndTask(label, module, process, task)
Definition: helpers.py:28
def addProcessAndTask(self, proc, label, module)
assert(be >=bs)
User floats producers, selectors ##########################.
def __init__(self, jet, inputCollection)
def __init__(self, jet, inputCollection)
void print(TMatrixD &m, const char *label=nullptr, bool mathematicaFormat=false)
Definition: Utilities.cc:47
static std::string join(char **cmd)
Definition: RemoteFile.cc:19
def addRecoJetCollection(self, proc, jet, inputCollection="", minPtFastjet=None, genJetsCollection="", bTagDiscriminators=["None"], JETCorrLevels=["L1FastJet", L2Relative, L3Absolute, L2L3Residual)
def addProcessAndTask(self, proc, label, module)
def getPatAlgosToolsTask(process)
Definition: helpers.py:13