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,19 +23,20 @@
// * acceptance of all terms of the Geant4 Software license. *
// ********************************************************************
//
// G4MagErrorStepper inline methods implementation
//
//
// Author: W.Wander <wwc@mit.edu>, 09.12.1997
// --------------------------------------------------------------------
inline
G4MagErrorStepper::G4MagErrorStepper(G4EquationOfMotion *EquationRhs,
G4MagErrorStepper::G4MagErrorStepper(G4EquationOfMotion* EquationRhs,
G4int numberOfVariables,
G4int numStateVariables)
: G4MagIntegratorStepper(EquationRhs,numberOfVariables,numStateVariables)
{
G4int nvar = std::max(this->GetNumberOfVariables(), 8);
yMiddle= new G4double[nvar];
dydxMid= new G4double[nvar];
yInitial= new G4double[nvar];
yOneStep= new G4double[nvar];
G4int nvar = std::max(GetNumberOfVariables(), 8);
yMiddle = new G4double[nvar];
dydxMid = new G4double[nvar];
yInitial = new G4double[nvar];
yOneStep = new G4double[nvar];
}