Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Andreas Stefl <[email protected]>
  • Loading branch information
benjaminhuth and andiwand authored Jul 9, 2024
1 parent e65f098 commit 2210f80
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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)) {
Expand Down Expand Up @@ -170,7 +170,7 @@ std::vector<std::int64_t> 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);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 ]
Expand Down

0 comments on commit 2210f80

Please sign in to comment.