From 2210f80ead833e3a8929c2cc0d0b840c63d35e0b Mon Sep 17 00:00:00 2001 From: Benjamin Huth <37871400+benjaminhuth@users.noreply.github.com> Date: Tue, 9 Jul 2024 14:42:15 +0200 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Andreas Stefl --- .../Algorithms/TrackFindingExaTrkX/src/TruthGraphBuilder.cpp | 4 ++-- Examples/Framework/include/ActsExamples/EventData/Graph.hpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Examples/Algorithms/TrackFindingExaTrkX/src/TruthGraphBuilder.cpp b/Examples/Algorithms/TrackFindingExaTrkX/src/TruthGraphBuilder.cpp index a97a5604986..eef265a24ce 100644 --- a/Examples/Algorithms/TrackFindingExaTrkX/src/TruthGraphBuilder.cpp +++ b/Examples/Algorithms/TrackFindingExaTrkX/src/TruthGraphBuilder.cpp @@ -13,7 +13,7 @@ using namespace Acts::UnitLiterals; namespace ActsExamples { -ActsExamples::TruthGraphBuilder::TruthGraphBuilder(Config config, +TruthGraphBuilder::TruthGraphBuilder(Config config, Acts::Logging::Level level) : ActsExamples::IAlgorithm("TruthGraphBuilder", level), m_cfg(std::move(config)) { @@ -170,7 +170,7 @@ std::vector TruthGraphBuilder::buildFromSimhits( return truthGraph; } -ActsExamples::ProcessCode ActsExamples::TruthGraphBuilder::execute( +ProcessCode TruthGraphBuilder::execute( const ActsExamples::AlgorithmContext& ctx) const { // Read input data const auto& spacepoints = m_inputSpacePoints(ctx); diff --git a/Examples/Framework/include/ActsExamples/EventData/Graph.hpp b/Examples/Framework/include/ActsExamples/EventData/Graph.hpp index 5508958ccaa..5014f6548c4 100644 --- a/Examples/Framework/include/ActsExamples/EventData/Graph.hpp +++ b/Examples/Framework/include/ActsExamples/EventData/Graph.hpp @@ -16,7 +16,7 @@ namespace ActsExamples { /// Lightweight graph representation for GNN debugging /// struct Graph { - /// The edges-vector contains flattened edge-pairs.Usually, the indices + /// The edges-vector contains flattened edge-pairs. Usually, the indices /// refer to a spacepoint collection. /// /// Structure: [ source0, dest0, source1, dest1, ..., sourceN, destN ]