From fb812528787901d6fe727687a4a6a033d7b1aed7 Mon Sep 17 00:00:00 2001 From: amete Date: Fri, 11 Oct 2019 10:24:09 +0200 Subject: [PATCH] Drop listening AthenaHiveEventLoopMgr in PerfMonMTSvc --- .../PerformanceMonitoring/PerfMonComps/src/PerfMonMTSvc.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Control/PerformanceMonitoring/PerfMonComps/src/PerfMonMTSvc.cxx b/Control/PerformanceMonitoring/PerfMonComps/src/PerfMonMTSvc.cxx index 8cfd76a441b..97e70724fa6 100644 --- a/Control/PerformanceMonitoring/PerfMonComps/src/PerfMonMTSvc.cxx +++ b/Control/PerformanceMonitoring/PerfMonComps/src/PerfMonMTSvc.cxx @@ -102,7 +102,7 @@ void PerfMonMTSvc::startAud( const std::string& stepName, * for PerfMonMTSvc. There are some components before it. We miss them. * It should be fixed. */ - if( compName != "PerfMonMTSvc" ){ + if( compName != "AthenaHiveEventLoopMgr" && compName != "PerfMonMTSvc" ){ startSnapshotAud(stepName, compName); if( !isLoop() ) @@ -119,7 +119,7 @@ void PerfMonMTSvc::startAud( const std::string& stepName, void PerfMonMTSvc::stopAud( const std::string& stepName, const std::string& compName ) { - if( compName != "PerfMonMTSvc" ){ + if( compName != "AthenaHiveEventLoopMgr" && compName != "PerfMonMTSvc" ){ stopSnapshotAud(stepName, compName); if( !isLoop() ) -- GitLab