30 lines
894 B
Plaintext
30 lines
894 B
Plaintext
// This code implementation is the intellectual property of
|
|
// the GEANT4 collaboration.
|
|
//
|
|
// By copying, distributing or modifying the Program (or any work
|
|
// based on the Program) you indicate your acceptance of this statement,
|
|
// and all its terms.
|
|
//
|
|
// $Id: G4MagErrorStepper.icc,v 1.4.8.1 1999/12/07 20:48:01 gunter Exp $
|
|
// GEANT4 tag $Name: geant4-01-00 $
|
|
//
|
|
|
|
inline G4MagErrorStepper::G4MagErrorStepper(G4Mag_EqRhs *EqRhs,
|
|
G4int numberOfVariables)
|
|
:G4MagIntegratorStepper(EqRhs,numberOfVariables)
|
|
{
|
|
const G4int nvar = this->GetNumberOfVariables() ;
|
|
yMiddle= new G4double[nvar];
|
|
dydxMid= new G4double[nvar];
|
|
yInitial= new G4double[nvar];
|
|
yOneStep= new G4double[nvar];
|
|
};
|
|
|
|
inline G4MagErrorStepper::~G4MagErrorStepper()
|
|
{
|
|
delete[] yMiddle;
|
|
delete[] dydxMid;
|
|
delete[] yInitial;
|
|
delete[] yOneStep;
|
|
}
|