1 import FWCore.ParameterSet.Config
as cms
6 from CommonTools.PileupAlgos.softKiller_cfi
import softKiller
13 from RecoJets.JetProducers.ak4GenJets_cfi
import ak4GenJets
15 from RecoJets.JetProducers.ak4CaloJets_cfi
import ak4CaloJets
33 Class to hold information of a genjet collection
44 jetRegex = re.compile(
45 r'(?P<{algo}>({algoList}))(?P<{size}>[0-9]+)gen'.
format(
47 algoList =
'|'.
join(supportedJetAlgos.keys()),
51 jetMatch = jetRegex.match(jet.lower())
53 raise RuntimeError(
'Invalid jet collection: %s' % jet)
65 Tool to schedule modules for building a genjet collection with input MiniAODs
82 print(
"jetCollectionTools::GenJetAdder::addGenJetCollection: Adding Gen Jet Collection: {}".
format(jet))
88 jetLower = genJetInfo.jetLower
89 jetUpper = genJetInfo.jetUpper
97 if not inputCollection:
98 print(
"jetCollectionTools::GenJetAdder::addGenJetCollection: inputCollection not specified. Building genjet collection now")
102 packedGenPartNoNu =
"packedGenParticlesForJetsNoNu"
105 src = cms.InputTag(
"packedGenParticles"),
106 cut = cms.string(
"abs(pdgId) != 12 && abs(pdgId) != 14 && abs(pdgId) != 16"),
113 genJetsCollection =
"{}{}{}".
format(genJetInfo.jetAlgo.upper(), genJetInfo.jetSize,
'GenJetsNoNu')
115 src = packedGenPartNoNu,
116 jetAlgorithm = cms.string(supportedJetAlgos[genJetInfo.jetAlgo]),
117 rParam = cms.double(genJetInfo.jetSizeNr),
123 if minPtFastjet !=
None:
124 getattr(proc, genJetsCollection).jetPtMin = minPtFastjet
135 Class to hold information of a recojet collection
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(
150 algoList =
'|'.
join(supportedJetAlgos.keys()),
153 puMethod = puMethodKey,
156 jetMatch = jetRegex.match(jet.lower())
158 raise RuntimeError(
'Invalid jet collection: %s' % jet)
193 Tool to schedule modules for building a patJet collection from MiniAODs
199 self.
pvLabel =
"offlineSlimmedPrimaryVertices"
205 self.
patJetsInMiniAOD = [
"slimmedJets",
"slimmedJetsAK8",
"slimmedJetsPuppi",
"slimmedCaloJets"]
214 inputCollection = "",
216 genJetsCollection = "",
217 bTagDiscriminators = ["None"],
218 JETCorrLevels = ["L1FastJet", "L2Relative", "L3Absolute", "L2L3Residual"],
220 print(
"jetCollectionTools::RecoJetAdder::addRecoJetCollection: Adding Reco Jet Collection: {}".
format(jet))
225 raise RuntimeError(
"Invalid input collection: %s" % inputCollection)
233 jetLower = recoJetInfo.jetLower
234 jetUpper = recoJetInfo.jetUpper
235 tagName = recoJetInfo.jetTagName
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")
252 if not inputCollection
or recoJetInfo.doCalo:
253 print(
"jetCollectionTools::RecoJetAdder::addRecoJetCollection: inputCollection not specified. Building recojet collection now")
267 if recoJetInfo.jetPUMethod
not in [
"",
"cs" ]:
268 pfCand += recoJetInfo.jetPUMethod
279 if recoJetInfo.jetPUMethod
in [
"",
"cs" ]:
284 elif recoJetInfo.jetPUMethod ==
"chs":
286 src = cms.InputTag(self.
pfLabel),
287 cut = cms.string(
"fromPV"),
294 elif recoJetInfo.jetPUMethod ==
"puppi":
304 elif recoJetInfo.jetPUMethod ==
"sk":
307 rParam = recoJetInfo.jetSizeNr,
312 raise RuntimeError(
"Currently unsupported PU method: '%s'" % recoJetInfo.jetPUMethod)
319 if not recoJetInfo.doCalo:
320 jetCollection =
'{}Collection'.
format(jetUpper)
322 if jetCollection
in self.
main:
323 raise ValueError(
"Step '%s' already implemented" % jetCollection)
327 if recoJetInfo.jetPUMethod ==
"chs":
332 elif recoJetInfo.jetPUMethod ==
"puppi":
338 elif recoJetInfo.jetPUMethod ==
"sk":
343 elif recoJetInfo.jetPUMethod ==
"cs":
353 getattr(proc, jetCollection).jetAlgorithm = supportedJetAlgos[recoJetInfo.jetAlgo]
354 getattr(proc, jetCollection).rParam = recoJetInfo.jetSizeNr
358 if minPtFastjet !=
None:
359 getattr(proc, jetCollection).jetPtMin = minPtFastjet
360 currentTasks.append(jetCollection)
362 jetCollection = inputCollection
373 if recoJetInfo.jetPUMethod ==
"puppi":
374 jetCorrLabel =
"Puppi"
375 elif recoJetInfo.jetPUMethod
in [
"cs",
"sk" ]:
378 jetCorrLabel = recoJetInfo.jetPUMethod
382 recoJetInfo.jetAlgo.upper(),
384 "Calo" if recoJetInfo.doCalo
else recoJetInfo.jetReco.upper(),
391 postfix =
"Recluster" if inputCollection ==
"" else ""
394 labelName = jetUpper,
396 jetSource = cms.InputTag(jetCollection),
397 algo = recoJetInfo.jetAlgo,
398 rParam = recoJetInfo.jetSizeNr,
399 pvSource = cms.InputTag(self.
pvLabel),
400 pfCandidates = cms.InputTag(self.
pfLabel),
401 svSource = cms.InputTag(self.
svLabel),
402 muSource = cms.InputTag(self.
muLabel),
403 elSource = cms.InputTag(self.
elLabel),
404 genJetCollection = cms.InputTag(genJetsCollection),
405 genParticles = cms.InputTag(self.
gpLabel),
406 jetCorrections = jetCorrections,
412 if recoJetInfo.jetPUMethod ==
"puppi":
413 getattr(proc,
"patJetFlavourAssociation{}{}".
format(jetUpper,postfix)).weights = cms.InputTag(pfCand)
415 getJetMCFlavour =
not recoJetInfo.doCalo
and recoJetInfo.jetPUMethod !=
"cs"
417 delattr(proc,
'patJetGenJetMatch{}{}'.
format(jetUpper,postfix))
418 delattr(proc,
'patJetPartonMatch{}{}'.
format(jetUpper,postfix))
419 getJetMCFlavour =
False
420 setattr(getattr(proc,
"patJets{}{}".
format(jetUpper,postfix)),
"getJetMCFlavour", cms.bool(getJetMCFlavour))
422 selectedPatJets =
"selectedPatJets{}{}".
format(jetUpper,postfix)
433 labelName = jetUpper,
435 jetSource = cms.InputTag(selectedPatJets),
436 jetCorrections = jetCorrections,
437 btagDiscriminators = bTagDiscriminators,
440 recoJetInfo.patJetFinalCollection =
"selectedUpdatedPatJets{}{}".
format(jetUpper,
"Final")
442 recoJetInfo.patJetFinalCollection = inputCollection
444 self.
main.extend(currentTasks)