Skip to content

Commit

Permalink
try to get rid of hash changes
Browse files Browse the repository at this point in the history
  • Loading branch information
andiwand committed Feb 20, 2025
1 parent a8e724d commit dd06340
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Core/include/Acts/Propagator/StepperOptions.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
#include "Acts/Definitions/Units.hpp"

#include <functional>
#include <limits>

namespace Acts {

Expand All @@ -36,10 +37,10 @@ struct StepperPlainOptions {
double stepSizeCutOff = 0.;

/// Initial step size
double initialStepSize = 1 * Acts::UnitConstants::m;
double initialStepSize = 10 * Acts::UnitConstants::m;

/// Absolute maximum step size
double maxStepSize = 10 * Acts::UnitConstants::m;
double maxStepSize = std::numeric_limits<double>::max();

/// Maximum number of Runge-Kutta steps for the stepper step call
unsigned int maxRungeKuttaStepTrials = 10000;
Expand Down

0 comments on commit dd06340

Please sign in to comment.