Skip to content
Snippets Groups Projects
Commit cf3f2d5f authored by Frank Winklmeier's avatar Frank Winklmeier
Browse files

Merge branch 'AnalysisTop-OR' into 'master'

AnalysisTop: Use PFlow OR only when muons are used

See merge request atlas/athena!39153
parents ad0677fa 4a92aa2e
No related branches found
No related tags found
No related merge requests found
...@@ -68,8 +68,6 @@ namespace top { ...@@ -68,8 +68,6 @@ namespace top {
ATH_MSG_INFO("Overlap removal procedure = " << OR_procedure); ATH_MSG_INFO("Overlap removal procedure = " << OR_procedure);
// ORUtils::ORFlags OR_flags("OverlapRemovalTool",
// "passPreORSelection");
ORUtils::ORFlags OR_flags("OverlapRemovalTool", ORUtils::ORFlags OR_flags("OverlapRemovalTool",
"ORToolDecoration"); "ORToolDecoration");
...@@ -85,7 +83,7 @@ namespace top { ...@@ -85,7 +83,7 @@ namespace top {
OR_flags.boostedLeptons = true; OR_flags.boostedLeptons = true;
} }
OR_flags.doFatJets = (m_config->useLargeRJets() && m_config->doLargeJetOverlapRemoval()); OR_flags.doFatJets = (m_config->useLargeRJets() && m_config->doLargeJetOverlapRemoval());
OR_flags.doMuPFJetOR = (m_config->useParticleFlowJets()); OR_flags.doMuPFJetOR = (m_config->useParticleFlowJets() && m_config->useMuons());
const float floatMax = std::numeric_limits<float>::max(); const float floatMax = std::numeric_limits<float>::max();
...@@ -175,7 +173,6 @@ namespace top { ...@@ -175,7 +173,6 @@ namespace top {
m_overlapRemovalTool = std::move(m_ORtoolBox.masterTool); m_overlapRemovalTool = std::move(m_ORtoolBox.masterTool);
OR_flags.masterName = "OverlapRemovalToolLoose"; OR_flags.masterName = "OverlapRemovalToolLoose";
// OR_flags.inputLabel = "passPreORSelectionLoose";
OR_flags.inputLabel = "ORToolDecorationLoose"; OR_flags.inputLabel = "ORToolDecorationLoose";
top::check(ORUtils::recommendedTools(OR_flags, m_ORtoolBox_Loose), top::check(ORUtils::recommendedTools(OR_flags, m_ORtoolBox_Loose),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment