diff --git a/Event/EventBookkeeperTools/src/CutFlowSvc.cxx b/Event/EventBookkeeperTools/src/CutFlowSvc.cxx index ed028ec3d97e2f78f72be8e4e952449b0ff1fe3d..5d765b2c6a0b37a064c88dec0a929f5ee29b57c3 100644 --- a/Event/EventBookkeeperTools/src/CutFlowSvc.cxx +++ b/Event/EventBookkeeperTools/src/CutFlowSvc.cxx @@ -127,13 +127,13 @@ CutFlowSvc::setFilterDescription( CutIdentifier cutID, void CutFlowSvc::addEvent( CutIdentifier cutID, double weight) { - ATH_MSG_INFO("Adding event with weight "<< weight << "to cut " << cutID); + ATH_MSG_VERBOSE("Adding event with weight "<< weight << "to cut " << cutID); std::lock_guard<std::recursive_mutex> lock(m_addEventMutex); xAOD::CutBookkeeper* cbk = getCutBookkeeper(cutID); if (cbk == nullptr) { - ATH_MSG_INFO("Could not find CutBookkeeper, creating a new one"); + ATH_MSG_DEBUG("Could not find CutBookkeeper, creating a new one"); // Iterate over the complete bookkeepers and update the cutID-to-bookkeeper map ATH_MSG_DEBUG( "addEvent: Going to re-populate the map. Have " diff --git a/Event/EventBookkeeperTools/src/CutFlowSvc.h b/Event/EventBookkeeperTools/src/CutFlowSvc.h index 7849212a9331ee789638f40bbe89218cd24f3c7d..538f0c79964f3ed62a3c8a7200b37e21fd5b421c 100644 --- a/Event/EventBookkeeperTools/src/CutFlowSvc.h +++ b/Event/EventBookkeeperTools/src/CutFlowSvc.h @@ -20,7 +20,6 @@ #include <mutex> #include <string> #include <unordered_map> -#include <vector> // FrameWork includes #include "GaudiKernel/ISvcLocator.h"