From be09875b5aeae471e89abd4ede6e46dad5706d7e Mon Sep 17 00:00:00 2001 From: Bill Balunas <bill.balunas@cern.ch> Date: Thu, 2 Apr 2020 16:53:59 +0200 Subject: [PATCH 1/2] Fix spurious error message --- .../Jet/JetMomentTools/Root/JetClusterMomentsTool.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Reconstruction/Jet/JetMomentTools/Root/JetClusterMomentsTool.cxx b/Reconstruction/Jet/JetMomentTools/Root/JetClusterMomentsTool.cxx index 5807ef0713e8..64682f072574 100644 --- a/Reconstruction/Jet/JetMomentTools/Root/JetClusterMomentsTool.cxx +++ b/Reconstruction/Jet/JetMomentTools/Root/JetClusterMomentsTool.cxx @@ -13,7 +13,7 @@ JetClusterMomentsTool::JetClusterMomentsTool(const std::string& name) StatusCode JetClusterMomentsTool::initialize(){ if(m_jetContainerName.empty()){ - ATH_MSG_ERROR("JetBadChanCorrTool needs to have its input jet container name configured!"); + ATH_MSG_ERROR("JetClusterMomentsTool needs to have its input jet container name configured!"); return StatusCode::FAILURE; } -- GitLab From 9f4012e8033ed6f79a646877f784bfaee8760664 Mon Sep 17 00:00:00 2001 From: Bill Balunas <bill.balunas@cern.ch> Date: Thu, 2 Apr 2020 16:55:02 +0200 Subject: [PATCH 2/2] Remove outdated comment --- Reconstruction/Jet/JetInterface/JetInterface/IJetDecorator.h | 1 - 1 file changed, 1 deletion(-) diff --git a/Reconstruction/Jet/JetInterface/JetInterface/IJetDecorator.h b/Reconstruction/Jet/JetInterface/JetInterface/IJetDecorator.h index 55d4ff161a66..59c07562869c 100644 --- a/Reconstruction/Jet/JetInterface/JetInterface/IJetDecorator.h +++ b/Reconstruction/Jet/JetInterface/JetInterface/IJetDecorator.h @@ -26,7 +26,6 @@ ASG_TOOL_INTERFACE(IJetDecorator) public: /// Decorate a jet collection without otherwise modifying it. - /// Returns 0 for success. virtual StatusCode decorate(const xAOD::JetContainer& jets) const = 0; /// Concrete implementation of the function inherited from IJetModifier. -- GitLab