35 lines
1.1 KiB
Plaintext
35 lines
1.1 KiB
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: G4MagIntegratorStepper.icc,v 1.2.8.1 1999/12/07 20:48:02 gunter Exp $
|
|
// GEANT4 tag $Name: geant4-01-00 $
|
|
//
|
|
inline G4EquationOfMotion* G4MagIntegratorStepper::GetEquationOfMotion() const
|
|
{ return fEquation_Rhs; }
|
|
|
|
inline void G4MagIntegratorStepper::RightHandSide( const double y[], double dydx[] )
|
|
{ fEquation_Rhs-> RightHandSide(y, dydx); }
|
|
|
|
inline G4int G4MagIntegratorStepper::GetNumberOfVariables()
|
|
{ return fNumberOfVariables; }
|
|
inline void G4MagIntegratorStepper::SetNumberOfVariables(G4int newNo)
|
|
{ fNumberOfVariables = newNo; }
|
|
|
|
|
|
inline void G4MagIntegratorStepper::
|
|
NormaliseTangentVector( G4double vec[6] )
|
|
{
|
|
double drds2 = vec[3]*vec[3]+vec[4]*vec[4]+vec[5]*vec[5];
|
|
|
|
if( fabs(drds2 - 1.0) > 1.e-14 ){
|
|
double normx = 1.0 / sqrt(drds2);
|
|
for(int i=0;i<3;i++)
|
|
vec[i+3] *= normx;
|
|
}
|
|
}
|
|
|