Skip to content

Commit

Permalink
fix direction bug
Browse files Browse the repository at this point in the history
  • Loading branch information
andiwand committed Aug 21, 2024
1 parent 7d571e1 commit bac5c03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Core/include/Acts/Propagator/Navigator.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ class Navigator {
Vector3 position = stepper.position(state.stepping);
Vector3 direction = stepper.direction(state.stepping);

initialize(state.navigation, position, direction);
initialize(state.navigation, position, state.options.direction * direction);
}

/// @brief Navigator estimateNextTarget call
Expand Down

0 comments on commit bac5c03

Please sign in to comment.