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 18, 2025
1 parent 7dfe026 commit 67fa0bd
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions JugTrack/src/components/CKFTrackingFunction.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,11 @@ namespace {
Jug::Reco::CKFTracking::TrackFinderResult
operator()(const ActsExamples::TrackParameters& initialParameters,
const Jug::Reco::CKFTracking::TrackFinderOptions& options,
#if Acts_VERSION_MAJOR >= 36
ActsExamples::TrackContainer& tracks) const override {
#else
TrackContainer& tracks) const override {
#endif
return trackFinder.findTracks(initialParameters, options, tracks);
};
};
Expand Down

0 comments on commit 67fa0bd

Please sign in to comment.