From a9ed41f29c7cdfb8a2c88190d26cfb0a1b14f742 Mon Sep 17 00:00:00 2001 From: Tim Adye Date: Wed, 9 Oct 2024 20:25:05 +0100 Subject: [PATCH] fix: fix name BranchState (#3707) Fix spelling `BrachState` → `BranchState`. --- .../TrackFinding/src/TrackFindingAlgorithm.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Examples/Algorithms/TrackFinding/src/TrackFindingAlgorithm.cpp b/Examples/Algorithms/TrackFinding/src/TrackFindingAlgorithm.cpp index cca2fe7dfef..ed9918c4f84 100644 --- a/Examples/Algorithms/TrackFinding/src/TrackFindingAlgorithm.cpp +++ b/Examples/Algorithms/TrackFinding/src/TrackFindingAlgorithm.cpp @@ -174,13 +174,13 @@ class BranchStopper { using BranchStopperResult = Acts::CombinatorialKalmanFilterBranchStopperResult; - struct BrachState { + struct BranchState { std::size_t nPixelHoles = 0; std::size_t nStripHoles = 0; }; - static constexpr Acts::ProxyAccessor branchStateAccessor = - Acts::ProxyAccessor(Acts::hashString("MyBranchState")); + static constexpr Acts::ProxyAccessor branchStateAccessor = + Acts::ProxyAccessor(Acts::hashString("MyBranchState")); mutable std::atomic m_nStoppedBranches{0}; @@ -400,8 +400,8 @@ ProcessCode TrackFindingAlgorithm::execute(const AlgorithmContext& ctx) const { TrackContainer tracksTemp(trackContainerTemp, trackStateContainerTemp); // Note that not all backends support PODs as column types - tracks.addColumn("MyBranchState"); - tracksTemp.addColumn("MyBranchState"); + tracks.addColumn("MyBranchState"); + tracksTemp.addColumn("MyBranchState"); tracks.addColumn("trackGroup"); tracksTemp.addColumn("trackGroup");