Import Geant4 10.6.0 source tree

This commit is contained in:
Gabriele Cosmo
2019-12-06 15:12:28 +01:00
parent b2a62ae692
commit 5baee230e9
2997 changed files with 141580 additions and 98673 deletions
@@ -23,28 +23,24 @@
// * acceptance of all terms of the Geant4 Software license. *
// ********************************************************************
//
// G4MagIntegratorStepper implementation
//
//
// Author: J.Apostolakis, CERN - 15.01.1997
// --------------------------------------------------------------------
#include "G4MagIntegratorStepper.hh"
// Constructor for stepper abstract base class.
//
G4MagIntegratorStepper::G4MagIntegratorStepper(G4EquationOfMotion* Equation,
G4int num_integration_vars,
G4int num_state_vars,
bool isFSAL
// , G4int methodOrder
)
//
G4MagIntegratorStepper::
G4MagIntegratorStepper( G4EquationOfMotion* Equation,
G4int num_integration_vars,
G4int num_state_vars,
G4bool isFSAL )
: fEquation_Rhs(Equation),
fNoIntegrationVariables(num_integration_vars),
fNoStateVariables(std::max(num_state_vars,8)),
fNoRHSCalls( 0UL ),
fIntegrationOrder( -1 ), // Invalid value -- must be set by stepper !!!
fIsFSAL(isFSAL)
{
}