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,20 +23,15 @@
// * acceptance of all terms of the Geant4 Software license. *
// ********************************************************************
//
//
//
//
// class G4MagErrorStepper
// G4MagErrorStepper
//
// Class description:
//
// Abstract base class for integrator of particle's equation of motion,
// used in tracking in space dependent magnetic field.
// History:
// 09.12.97 W.Wander <wwc@mit.edu> Created G4MagErrorStepper
// Author: W.Wander <wwc@mit.edu>, 09.12.1997
// --------------------------------------------------------------------
#ifndef G4MAGERRORSTEPPER_HH
#define G4MAGERRORSTEPPER_HH
@@ -49,14 +44,19 @@ class G4MagErrorStepper : public G4MagIntegratorStepper
{
public: // with description
G4MagErrorStepper(G4EquationOfMotion *EqRhs, G4int numberOfVariables, G4int numStateVariables=12);
G4MagErrorStepper(G4EquationOfMotion*EqRhs,
G4int numberOfVariables,
G4int numStateVariables = 12);
virtual ~G4MagErrorStepper();
G4MagErrorStepper(const G4MagErrorStepper&) = delete;
G4MagErrorStepper& operator=(const G4MagErrorStepper&) = delete;
void Stepper( const G4double y[],
const G4double dydx[],
G4double h,
G4double yout[],
G4double yerr[] );
G4double yerr[] );
// The stepper for the Runge Kutta integration. The stepsize
// is fixed, with the Step size given by h.
// Integrates ODE starting values y[0 to 6].
@@ -70,12 +70,6 @@ class G4MagErrorStepper : public G4MagIntegratorStepper
G4double DistChord() const;
private:
G4MagErrorStepper(const G4MagErrorStepper&);
G4MagErrorStepper& operator=(const G4MagErrorStepper&);
// Private copy constructor and assignment operator.
private:
// STATE
@@ -91,4 +85,4 @@ class G4MagErrorStepper : public G4MagIntegratorStepper
#include "G4MagErrorStepper.icc"
#endif /* G4MAGERRORSTEPPER_HH */
#endif