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
@@ -22,19 +22,15 @@
// * acceptance of all terms of the Geant4 Software license. *
// ********************************************************************
//
// G4ModifiedMidpoint
//
// Class description:
//
//
// Description:
// Modified midpoint method implementation
// Implementation is based on modified_midpoint.hpp from boost odeint
// Implementation by Dmitry Sorokin - GSoC 2016
// Work supported by Google as part of Google Summer of Code 2016.
// Supervision / code review: John Apostolakis
//
///////////////////////////////////////////////////////////////////////////////
// Modified midpoint method implementation, based on Boost odeint
// Author: Dmitry Sorokin, Google Summer of Code 2016
// Supervision: John Apostolakis, CERN
// --------------------------------------------------------------------
#ifndef G4MODIFIED_MIDPOINT_HH
#define G4MODIFIED_MIDPOINT_HH
@@ -71,9 +67,9 @@ class G4ModifiedMidpoint
private:
G4EquationOfMotion* fEquation;
G4int fnvar;
G4int fsteps;
G4EquationOfMotion* fEquation = nullptr;
G4int fnvar = 0;
G4int fsteps = 0;
};
#include "G4ModifiedMidpoint.icc"