Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding no-HF grid-based rho (76x forward-port #11773), and fixing existing bugged central rho values #11855

Merged
merged 8 commits into from
Oct 23, 2015
2 changes: 2 additions & 0 deletions RecoJets/Configuration/python/RecoJets_EventContent_cff.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@
'keep *_fixedGridRhoFastjetAll_*_*',
'keep *_fixedGridRhoFastjetAllTmp_*_*',
'keep *_fixedGridRhoFastjetAllCalo_*_*',
'keep *_fixedGridRhoFastjetCentral_*_*',
'keep *_fixedGridRhoFastjetCentralCalo_*_*',
'keep *_fixedGridRhoFastjetCentralChargedPileUp_*_*',
'keep *_fixedGridRhoFastjetCentralNeutral_*_*',
Expand Down Expand Up @@ -117,6 +118,7 @@
'keep *_fixedGridRhoAll_*_*',
'keep *_fixedGridRhoFastjetAll_*_*',
'keep *_fixedGridRhoFastjetAllTmp_*_*',
'keep *_fixedGridRhoFastjetCentral_*_*',
'keep *_fixedGridRhoFastjetAllCalo_*_*',
'keep *_fixedGridRhoFastjetCentralCalo_*_*',
'keep *_fixedGridRhoFastjetCentralChargedPileUp_*_*',
Expand Down
16 changes: 11 additions & 5 deletions RecoJets/Configuration/python/RecoPFJets_cff.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,15 +61,18 @@
)


fixedGridRhoFastjetCentral = fixedGridRhoFastjetAll.clone(
maxRapidity = cms.double(2.5)
)

fixedGridRhoFastjetCentralChargedPileUp = fixedGridRhoFastjetAll.clone(
src = cms.InputTag("pfPileUpAllChargedParticles"),
maxRapidity = cms.double(2.5)
pfCandidatesTag = "pfPileUpAllChargedParticles",
maxRapidity = 2.5
)

fixedGridRhoFastjetCentralNeutral = fixedGridRhoFastjetAll.clone(
src = cms.InputTag("pfAllNeutralHadronsAndPhotons"),
maxRapidity = cms.double(2.5)
pfCandidatesTag = "pfAllNeutralHadronsAndPhotons",
maxRapidity = 2.5
)


Expand Down Expand Up @@ -183,10 +186,11 @@

recoPFJets =cms.Sequence(fixedGridRhoAll+
fixedGridRhoFastjetAll+
fixedGridRhoFastjetCentral+
fixedGridRhoFastjetCentralChargedPileUp+
fixedGridRhoFastjetCentralNeutral+
ak4PFJets+
pfNoPileUpJMESequence+
pfNoPileUpJMESequence+
ak4PFJetsCHS+
ak8PFJetsCHS+
ak8PFJetsCHSConstituents+
Expand All @@ -203,6 +207,7 @@
kt6PFJetsCentralNeutralTight+
fixedGridRhoAll+
fixedGridRhoFastjetAll+
fixedGridRhoFastjetCentral+
fixedGridRhoFastjetCentralChargedPileUp+
fixedGridRhoFastjetCentralNeutral+
iterativeCone5PFJets+
Expand Down Expand Up @@ -246,6 +251,7 @@
recoPFJetsWithSubstructure=cms.Sequence(
fixedGridRhoAll+
fixedGridRhoFastjetAll+
fixedGridRhoFastjetCentral+
fixedGridRhoFastjetCentralChargedPileUp+
fixedGridRhoFastjetCentralNeutral+
ak4PFJets+
Expand Down