Skip to content

Commit

Permalink
fix: Fix boundaries navigation (#2534)
Browse files Browse the repository at this point in the history
I encountered looping navigation between boundary surfaces as we do the lookup with overstep limit.

I believe we do not want to look for any boundaries that are behind us? But I might overlook something

Pulled this out of #2518

blocked by
- #2545
- #2546
  • Loading branch information
andiwand committed Oct 25, 2023
1 parent 630fc20 commit f84610d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Core/src/Geometry/TrackingVolume.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,7 @@ Acts::TrackingVolume::compatibleBoundaries(

// The Limits: current, path & overstepping
double pLimit = options.pathLimit;
double oLimit = options.overstepLimit;
double oLimit = 0;

// Helper function to test intersection
auto checkIntersection =
Expand Down

0 comments on commit f84610d

Please sign in to comment.