From 8dd713204ce2cc792d577da3daf5e52fa663726e Mon Sep 17 00:00:00 2001 From: John Derek Chapman <chapman@hep.phy.cam.ac.uk> Date: Fri, 28 Feb 2020 13:24:59 +0000 Subject: [PATCH] Merge branch '213_printout' into '21.3' Fix printout logic in MuonPerformanceAlg See merge request atlas/athena!30642 (cherry picked from commit 7abc6fcb57bcd7b208bb87845a879ea214c857a7) ffbc75de fix printout logic in MuonPerformanceAlg --- .../MuonTrackPerformance/src/MuonPerformanceAlg.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/MuonSpectrometer/MuonValidation/MuonRecValidation/MuonTrackPerformance/src/MuonPerformanceAlg.cxx b/MuonSpectrometer/MuonValidation/MuonRecValidation/MuonTrackPerformance/src/MuonPerformanceAlg.cxx index d0cd9c98c7b..ab5f240433e 100644 --- a/MuonSpectrometer/MuonValidation/MuonRecValidation/MuonTrackPerformance/src/MuonPerformanceAlg.cxx +++ b/MuonSpectrometer/MuonValidation/MuonRecValidation/MuonTrackPerformance/src/MuonPerformanceAlg.cxx @@ -253,10 +253,10 @@ StatusCode MuonPerformanceAlg::execute() } else print(" Muon not found by Loose ", truthMu); if (medium) { m_nfound[9] += 1; - } else if (!loose) print(" Muon not found by Medium ", truthMu); + } else if (loose) print(" Muon not found by Medium ", truthMu); if (tight) { m_nfound[8] += 1; - } else if (!medium) print(" Muon not found by Tight ", truthMu); + } else if (medium) print(" Muon not found by Tight ", truthMu); m_nfound[6] += 1; if (truthMu->pt() > 5000.) { if (loose) m_nfound5[10] += 1; @@ -336,12 +336,12 @@ StatusCode MuonPerformanceAlg::execute() m_nfound[9] += 1; if (truthMu->pt() > 5000.) m_nfound5[9] += 1; if (truthMu->pt() > 10000.) m_nfound10[9] += 1; - } else if (!loose) print(" Muon not found by Medium endcap ", truthMu); + } else if (loose) print(" Muon not found by Medium endcap ", truthMu); if (tight) { m_nfound[8] += 1; if (truthMu->pt() > 5000.) m_nfound5[8] += 1; if (truthMu->pt() > 10000.) m_nfound10[8] += 1; - } else if (!medium) print(" Muon not found by Tight endcap ", truthMu); + } else if (medium) print(" Muon not found by Tight endcap ", truthMu); } } else { print(" No link Muon not found by CaloTag and Calolikelihood ", truthMu ); -- GitLab