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,10 +23,7 @@
// * acceptance of all terms of the Geant4 Software license. *
// ********************************************************************
//
//
//
//
// class G4HelixSimpleRunge
// G4HelixSimpleRunge
//
// Class description:
//
@@ -37,30 +34,28 @@
// Take the derivative at a position to be assumed at the middle of the
// Step and add it to the current position.
// W. Wander <wwc@mit.edu> 03/12/98
// Author: W. Wander <wwc@mit.edu>, 03.12.1998
// -------------------------------------------------------------------
#ifndef G4HELIXSIMPLERUNGE_HH
#define G4HELIXSIMPLERUNGE_HH
#include "G4MagHelicalStepper.hh"
class G4HelixSimpleRunge : public G4MagHelicalStepper
{
public: // with description
G4HelixSimpleRunge(G4Mag_EqRhs *EqRhs)
: G4MagHelicalStepper(EqRhs){}
G4HelixSimpleRunge(G4Mag_EqRhs* EqRhs);
~G4HelixSimpleRunge(){}
~G4HelixSimpleRunge();
void DumbStepper( const G4double y[],
G4ThreeVector Bfld,
G4double h,
G4double yout[]);
void DumbStepper( const G4double y[],
G4ThreeVector Bfld,
G4double h,
G4double yout[] );
public: // without description
G4int IntegratorOrder() const { return 2; }
inline G4int IntegratorOrder() const { return 2; }
};
#endif /* G4HELIXSIMPLERUNGE_HH */
#endif