From 21c88b5a7fcbde936e300fb98a63bd5a298bdfda Mon Sep 17 00:00:00 2001 From: John Chapman <jchapman@cern.ch> Date: Fri, 28 Aug 2020 15:22:10 +0200 Subject: [PATCH] clang-tidy fixes for DigitizationTests package --- Simulation/Tests/DigitizationTests/src/EventInfoTest.cxx | 2 +- Simulation/Tests/DigitizationTests/src/EventInfoTestTool.cxx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Simulation/Tests/DigitizationTests/src/EventInfoTest.cxx b/Simulation/Tests/DigitizationTests/src/EventInfoTest.cxx index 6457d3aab02..fe951c92cf7 100644 --- a/Simulation/Tests/DigitizationTests/src/EventInfoTest.cxx +++ b/Simulation/Tests/DigitizationTests/src/EventInfoTest.cxx @@ -45,7 +45,7 @@ StatusCode EventInfoTest::execute() { std::vector<xAOD::EventInfo::SubEvent>::const_iterator end = pevt->subEvents().end(); if (it == end) ATH_MSG_INFO("No xAOD::EventInfo::SubEvent found"); - for (auto sevt : pevt->subEvents()) { + for (const auto& sevt : pevt->subEvents()) { if (sevt.ptr() != NULL) { ATH_MSG_INFO("SubEvent info:"); ATH_MSG_INFO(" Time : " diff --git a/Simulation/Tests/DigitizationTests/src/EventInfoTestTool.cxx b/Simulation/Tests/DigitizationTests/src/EventInfoTestTool.cxx index 59fcf8c3e0b..2e90d4482bf 100644 --- a/Simulation/Tests/DigitizationTests/src/EventInfoTestTool.cxx +++ b/Simulation/Tests/DigitizationTests/src/EventInfoTestTool.cxx @@ -47,7 +47,7 @@ StatusCode EventInfoTestTool::processEvent() { std::vector<xAOD::EventInfo::SubEvent>::const_iterator end = pevt->subEvents().end(); if (it == end) ATH_MSG_INFO("No xAOD::EventInfo::SubEvent found"); - for (auto sevt : pevt->subEvents()) { + for (const auto& sevt : pevt->subEvents()) { if (sevt.ptr() != NULL) { ATH_MSG_INFO("SubEvent info:"); ATH_MSG_INFO(" Time : " -- GitLab