Skip to content

Commit

Permalink
refactor!: Use track container in Core CKF and pass track proxies to …
Browse files Browse the repository at this point in the history
…delegates (#3161) @36.0.0: (fixup)
  • Loading branch information
wdconinc committed Jan 22, 2025
1 parent 536783b commit 3df760e
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/algorithms/tracking/AmbiguitySolver.cc
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,11 @@ AmbiguitySolver::process(std::vector<const ActsExamples::ConstTrackContainer*> i
tips.clear();
parameters.clear();

if (!track.hasReferenceSurface()) {
ACTS_WARNING("Track has no reference surface.");
continue;
}

tips.push_back(track.tipIndex());
parameters.emplace(
std::pair{track.tipIndex(),
Expand Down

0 comments on commit 3df760e

Please sign in to comment.