From 0cabaebc42a42731768436352262fe097a655ec5 Mon Sep 17 00:00:00 2001 From: christos <christos@cern.ch> Date: Sat, 12 Nov 2022 21:01:15 +0100 Subject: [PATCH] isolation selection we need just the default in keep --- .../IsolationSelection/src/IsoCloseByCorrectionTrkSelAlg.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PhysicsAnalysis/AnalysisCommon/IsolationSelection/src/IsoCloseByCorrectionTrkSelAlg.cxx b/PhysicsAnalysis/AnalysisCommon/IsolationSelection/src/IsoCloseByCorrectionTrkSelAlg.cxx index 3bfadec749d2..4d031c205e69 100644 --- a/PhysicsAnalysis/AnalysisCommon/IsolationSelection/src/IsoCloseByCorrectionTrkSelAlg.cxx +++ b/PhysicsAnalysis/AnalysisCommon/IsolationSelection/src/IsoCloseByCorrectionTrkSelAlg.cxx @@ -126,7 +126,7 @@ namespace CP { m_tot_trks += thinner->size(); std::vector<bool> thin_dec(thinner->size(), false); for (const TrackPtr& trk : assoc_trks) { thin_dec[trk->index()] = true; } - thinner.keep(thin_dec, SG::ThinningDecisionBase::Op::And); + thinner.keep(thin_dec); } return StatusCode::SUCCESS; } -- GitLab