From b50b6144a6880637fff0e69ed1d13604f2fabf38 Mon Sep 17 00:00:00 2001 From: sutt <sutt@cern.ch> Date: Mon, 19 Nov 2018 09:19:49 +0100 Subject: [PATCH] Remove unused variable Variable became unused due to removing the debug printout. As this is a new feature, may well want to add the debig printout again to the reelase in the near future so have left the code there but, commented out Former-commit-id: ebece4415fc9a3e2994e966e1f3a94771f88631e --- .../src/AnalysisConfig_Ntuple.cxx | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Trigger/TrigAnalysis/TrigInDetAnalysisExample/src/AnalysisConfig_Ntuple.cxx b/Trigger/TrigAnalysis/TrigInDetAnalysisExample/src/AnalysisConfig_Ntuple.cxx index ba0120c6a62..0b684ab8ff1 100644 --- a/Trigger/TrigAnalysis/TrigInDetAnalysisExample/src/AnalysisConfig_Ntuple.cxx +++ b/Trigger/TrigAnalysis/TrigInDetAnalysisExample/src/AnalysisConfig_Ntuple.cxx @@ -1602,7 +1602,9 @@ void AnalysisConfig_Ntuple::loop() { std::vector<TIDA::Track>& tracks = offline->rois()[iroi].tracks(); - size_t Noffline = tracks.size(); + /// may well put the reporting back in, so leaving this + /// this in place + // size_t Noffline = tracks.size(); for ( std::vector<TIDA::Track>::iterator it=tracks.begin() ; it<tracks.end() ; ) { bool inc = true; @@ -1631,7 +1633,9 @@ void AnalysisConfig_Ntuple::loop() { if ( inc ) it++; } - // m_provider->msg(MSG::INFO) << "TIDA::Roi offline track reduction: " << Noffline << " -> " << tracks.size() << endmsg; + /// may well put the reporting back in, so leaving this + /// this in place + // m_provider->msg(MSG::DEBUG) << "TIDA::Roi offline track reduction: " << Noffline << " -> " << tracks.size() << endmsg; } -- GitLab