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":
291 elif recoJetInfo.jetPUMethod ==
"puppi":
301 elif recoJetInfo.jetPUMethod ==
"sk":
304 rParam = recoJetInfo.jetSizeNr,
309 raise RuntimeError(
"Currently unsupported PU method: '%s'" % recoJetInfo.jetPUMethod)
316 if not recoJetInfo.doCalo:
317 jetCollection =
'{}Collection'.
format(jetUpper)
319 if jetCollection
in self.
main:
320 raise ValueError(
"Step '%s' already implemented" % jetCollection)
324 if recoJetInfo.jetPUMethod ==
"chs":
329 elif recoJetInfo.jetPUMethod ==
"puppi":
335 elif recoJetInfo.jetPUMethod ==
"sk":
340 elif recoJetInfo.jetPUMethod ==
"cs":
350 getattr(proc, jetCollection).jetAlgorithm = supportedJetAlgos[recoJetInfo.jetAlgo]
351 getattr(proc, jetCollection).rParam = recoJetInfo.jetSizeNr
355 if minPtFastjet !=
None:
356 getattr(proc, jetCollection).jetPtMin = minPtFastjet
357 currentTasks.append(jetCollection)
359 jetCollection = inputCollection
370 if recoJetInfo.jetPUMethod ==
"puppi":
371 jetCorrLabel =
"Puppi" 372 elif recoJetInfo.jetPUMethod
in [
"cs",
"sk" ]:
375 jetCorrLabel = recoJetInfo.jetPUMethod
379 recoJetInfo.jetAlgo.upper(),
381 "Calo" if recoJetInfo.doCalo
else recoJetInfo.jetReco.upper(),
388 postfix =
"Recluster" if inputCollection ==
"" else "" 391 labelName = jetUpper,
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,
409 if recoJetInfo.jetPUMethod ==
"puppi":
410 getattr(proc,
"patJetFlavourAssociation{}{}".
format(jetUpper,postfix)).weights = cms.InputTag(pfCand)
412 getJetMCFlavour =
not recoJetInfo.doCalo
and recoJetInfo.jetPUMethod !=
"cs" 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))
419 selectedPatJets =
"selectedPatJets{}{}".
format(jetUpper,postfix)
430 labelName = jetUpper,
432 jetSource = cms.InputTag(selectedPatJets),
433 jetCorrections = jetCorrections,
434 btagDiscriminators = bTagDiscriminators,
437 recoJetInfo.patJetFinalCollection =
"selectedUpdatedPatJets{}{}".
format(jetUpper,
"Final")
439 recoJetInfo.patJetFinalCollection = inputCollection
441 self.
main.extend(currentTasks)
def addToProcessAndTask(label, module, process, task)
void print(TMatrixD &m, const char *label=nullptr, bool mathematicaFormat=false)
static std::string join(char **cmd)
def getPatAlgosToolsTask(process)