Geant4 11.4.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4ModifiedMidpoint.hh
Go to the documentation of this file.
1// ********************************************************************
2// * License and Disclaimer *
3// * *
4// * The Geant4 software is copyright of the Copyright Holders of *
5// * the Geant4 Collaboration. It is provided under the terms and *
6// * conditions of the Geant4 Software License, included in the file *
7// * LICENSE and available at http://cern.ch/geant4/license . These *
8// * include a list of copyright holders. *
9// * *
10// * Neither the authors of this software system, nor their employing *
11// * institutes,nor the agencies providing financial support for this *
12// * work make any representation or warranty, express or implied, *
13// * regarding this software system or assume any liability for its *
14// * use. Please see the license in the file LICENSE and URL above *
15// * for the full disclaimer and the limitation of liability. *
16// * *
17// * This code implementation is the result of the scientific and *
18// * technical work of the GEANT4 collaboration. *
19// * By using, copying, modifying or distributing the software (or *
20// * any work based on the software) you agree to acknowledge its *
21// * use in resulting scientific publications, and indicate your *
22// * acceptance of all terms of the Geant4 Software license. *
23// ********************************************************************
24//
25// G4ModifiedMidpoint
26//
27// Class description:
28//
29// Modified midpoint method implementation, based on Boost odeint.
30
31// Author: Dmitry Sorokin (CERN, Google Summer of Code 2016), 07.10.2016
32// Supervision: John Apostolakis (CERN)
33// --------------------------------------------------------------------
34#ifndef G4MODIFIED_MIDPOINT_HH
35#define G4MODIFIED_MIDPOINT_HH
36
37#include "G4Types.hh"
38#include "G4EquationOfMotion.hh"
39#include "G4FieldTrack.hh"
40
41/**
42 * @brief G4ModifiedMidpoint implements a midpoint method adapted from
43 * Boost odeint.
44 */
45
47{
48 public:
49
50 /**
51 * Constructor for G4ModifiedMidpoint.
52 * @param[in] equation Pointer to the provided equation of motion.
53 * @param[in] nvar The number of integration variables.
54 * @param[in] steps The minimum number of steps.
55 */
57 G4int nvar = 6, G4int steps = 2 );
58
59 /**
60 * Default Destructor.
61 */
63
64 /**
65 * Computes one step.
66 * @param[in] yIn Starting values array of integration variables.
67 * @param[in] dydxIn Derivatives array in input.
68 * @param[out] yOut Integration output.
69 * @param[in] hstep The given step size.
70 */
71 void DoStep( const G4double yIn[], const G4double dydxIn[],
72 G4double yOut[], G4double hstep) const;
73
74 /**
75 * Computes one step, as above but using also intermediate values.
76 * @param[in] yIn Starting values array of integration variables.
77 * @param[in] dydxIn Derivatives array in input.
78 * @param[out] yOut Integration output.
79 * @param[in] hstep The given step size.
80 * @param[in] yMid Mid point integration variables.
81 * @param[in] derivs Intermediate derivatives.
82 */
83 void DoStep( const G4double yIn[], const G4double dydxIn[],
84 G4double yOut[], G4double hstep, G4double yMid[],
85 G4double derivs[][G4FieldTrack::ncompSVEC]) const;
86
87 /**
88 * Setter and getter for steps.
89 */
90 inline void SetSteps(G4int steps);
91 inline G4int GetSteps() const;
92
93 /**
94 * Setter and getter for the equation of motion.
95 */
98
99 /**
100 * Returns the number of integration variables.
101 */
103
104 private:
105
106 /**
107 * Utility for copying array content from 'src' to 'dst'.
108 */
109 void copy(G4double dst[], const G4double src[]) const;
110
111 private:
112
113 G4EquationOfMotion* fEquation = nullptr;
114 G4int fnvar = 0;
115 G4int fsteps = 0;
116};
117
118#include "G4ModifiedMidpoint.icc"
119
120#endif
double G4double
Definition G4Types.hh:83
int G4int
Definition G4Types.hh:85
G4EquationOfMotion is the abstract base class for the right hand size of the equation of motion of a ...
G4int GetSteps() const
~G4ModifiedMidpoint()=default
void SetSteps(G4int steps)
void SetEquationOfMotion(G4EquationOfMotion *equation)
G4ModifiedMidpoint(G4EquationOfMotion *equation, G4int nvar=6, G4int steps=2)
G4int GetNumberOfVariables() const
void DoStep(const G4double yIn[], const G4double dydxIn[], G4double yOut[], G4double hstep) const
G4EquationOfMotion * GetEquationOfMotion() const