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");