Skip to content

Commit

Permalink
fix silly
Browse files Browse the repository at this point in the history
  • Loading branch information
andiwand committed Nov 3, 2023
1 parent 344a03c commit 5171737
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions Core/include/Acts/Propagator/DirectNavigator.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -255,14 +255,13 @@ class DirectNavigator {
chooseIntersection(
state.geoContext, surface, stepper.position(state.stepping),
state.options.direction * stepper.direction(state.stepping),
false, std::numeric_limits<double>::max(),
BoundaryCheck(false), std::numeric_limits<double>::max(),
stepper.overstepLimit(state.stepping),
state.options.targetTolerance)
.index();
auto surfaceStatus = stepper.updateSurfaceStatus(
state.stepping, surface, index, state.options.direction,
BoundaryCheck(false), state.options.targetTolerance,
*m_logger);
BoundaryCheck(false), state.options.targetTolerance, *m_logger);
if (surfaceStatus == Intersection3D::Status::unreachable) {
ACTS_VERBOSE(
"Surface not reachable anymore, switching to next one in "
Expand Down Expand Up @@ -314,14 +313,13 @@ class DirectNavigator {
chooseIntersection(
state.geoContext, surface, stepper.position(state.stepping),
state.options.direction * stepper.direction(state.stepping),
false, std::numeric_limits<double>::max(),
BoundaryCheck(false), std::numeric_limits<double>::max(),
stepper.overstepLimit(state.stepping),
state.options.targetTolerance)
.index();
auto surfaceStatus = stepper.updateSurfaceStatus(
state.stepping, surface, index, state.options.direction,
BoundaryCheck(false), state.options.targetTolerance,
*m_logger);
BoundaryCheck(false), state.options.targetTolerance, *m_logger);
if (surfaceStatus == Intersection3D::Status::onSurface) {
// Set the current surface
state.navigation.currentSurface = *state.navigation.navSurfaceIter;
Expand Down

0 comments on commit 5171737

Please sign in to comment.