ECCE @ EIC Software
Reference for
ECCE @ EIC
simulation and reconstruction software on GitHub
Home page
Related Pages
Modules
Namespaces
Classes
Files
External Links
File List
File Members
ECCE @ EIC Software
Deprecated List
Modules
Namespaces
Classes
Files
File List
acts
analysis
coresoftware
Doxygen_Assist
ecce-detectors
fun4all_eicdetectors
geant4
tree
geant4-10.6-release
config
environments
examples
source
analysis
digits_hits
error_propagation
event
externals
g3tog4
geometry
biasing
divisions
magneticfield
include
G4BFieldIntegrationDriver.hh
G4BogackiShampine23.hh
G4BogackiShampine45.hh
G4BulirschStoer.hh
G4BulirschStoerDriver.hh
G4CachedMagneticField.hh
G4CashKarpRKF45.hh
G4ChargeState.hh
G4ChordFinder.hh
G4ChordFinderDelegate.hh
G4ClassicalRK4.hh
G4ConstRK4.hh
G4DELPHIMagField.hh
G4DoLoMcPriRK34.hh
G4DormandPrince745.hh
G4DormandPrinceRK56.hh
G4DormandPrinceRK78.hh
G4ElectricField.hh
G4ElectroMagneticField.hh
G4EqEMFieldWithEDM.hh
G4EqEMFieldWithSpin.hh
G4EqGravityField.hh
G4EqMagElectricField.hh
G4EquationOfMotion.hh
G4ErrorMag_UsualEqRhs.hh
G4ExactHelixStepper.hh
G4ExplicitEuler.hh
G4Field.hh
G4FieldManager.hh
G4FieldManagerStore.hh
G4FieldTrack.hh
G4FieldUtils.hh
G4FSALBogackiShampine45.hh
G4FSALDormandPrince745.hh
G4FSALIntegrationDriver.hh
G4HarmonicPolMagField.hh
G4HelixExplicitEuler.hh
G4HelixHeum.hh
G4HelixImplicitEuler.hh
G4HelixMixedStepper.hh
G4HelixSimpleRunge.hh
G4ImplicitEuler.hh
G4IntegrationDriver.hh
G4InterpolationDriver.hh
G4LineCurrentMagField.hh
G4LineSection.hh
G4Mag_EqRhs.hh
G4Mag_SpinEqRhs.hh
G4Mag_UsualEqRhs.hh
G4MagErrorStepper.hh
G4MagHelicalStepper.hh
G4MagIntegratorDriver.hh
G4MagIntegratorStepper.hh
G4MagneticField.hh
G4ModifiedMidpoint.hh
G4MonopoleEq.hh
G4NystromRK4.hh
G4QuadrupoleMagField.hh
G4RepleteEofM.hh
G4RK547FEq1.hh
G4RK547FEq2.hh
G4RK547FEq3.hh
G4RKG3_Stepper.hh
G4RKIntegrationDriver.hh
G4SextupoleMagField.hh
G4SimpleHeum.hh
G4SimpleRunge.hh
G4TrialsCounter.hh
G4TsitourasRK45.hh
G4UniformElectricField.hh
G4UniformGravityField.hh
G4UniformMagField.hh
G4VFSALIntegrationStepper.hh
G4VIntegrationDriver.hh
src
management
navigation
solids
volumes
global
graphics_reps
intercoms
interfaces
materials
parameterisations
particles
persistency
physics_lists
processes
readout
run
track
tracking
visualization
macros
online_distribution
tutorials
doxygen_mainpage.h
File Members
External Links
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
G4RK547FEq3.hh
Go to the documentation of this file.
Or view
the newest version in sPHENIX GitHub for file G4RK547FEq3.hh
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
// G4RK547FEq3
26
//
27
// Class description:
28
//
29
// An implementation of the 7 stage embedded Runge-Kutta 4,5 pair (RK547FEq3)
30
// from the paper:
31
// D. J. Higham and G. Hall,
32
// "Embedded Runge-Kutta formulae with stable equilibrium states",
33
// J. Comput. Appl. Math., vol. 29, no. 1, pp. 25-33, 1990.
34
35
// Author: Dmitry Sorokin, Google Summer of Code 2017
36
// Supervision: John Apostolakis, CERN
37
// --------------------------------------------------------------------
38
#ifndef G4RK547FEq3_HH
39
#define G4RK547FEq3_HH
40
41
#include "
G4MagIntegratorStepper.hh
"
42
#include "
G4FieldTrack.hh
"
43
44
class
G4RK547FEq3
:
public
G4MagIntegratorStepper
45
{
46
public
:
47
48
G4RK547FEq3
(
G4EquationOfMotion
* EqRhs,
G4int
integrationVariables = 6);
49
50
G4RK547FEq3
(
const
G4RK547FEq3
&) =
delete
;
51
G4RK547FEq3
&
operator =
(
const
G4RK547FEq3
&) =
delete
;
52
53
virtual
void
Stepper
(
const
G4double
yInput[],
54
const
G4double
dydx[],
55
G4double
hstep,
56
G4double
yOutput[],
57
G4double
yError[] )
override
;
58
59
void
Stepper
(
const
G4double
yInput[],
60
const
G4double
dydx[],
61
G4double
hstep,
62
G4double
yOutput[],
63
G4double
yError[],
64
G4double
dydxOutput[] );
65
66
virtual
G4double
DistChord
()
const override
;
67
virtual
G4int
IntegratorOrder
()
const override
{
return
4; }
68
69
private
:
70
71
void
makeStep
(
const
G4double
yInput[],
72
const
G4double
dydx[],
73
const
G4double
hstep,
74
G4double
yOutput[],
75
G4double
* dydxOutput =
nullptr
,
76
G4double
* yError =
nullptr
)
const
;
77
private
:
78
79
G4double
fyIn
[
G4FieldTrack::ncompSVEC
],
80
fdydx
[
G4FieldTrack::ncompSVEC
],
81
fyOut
[
G4FieldTrack::ncompSVEC
],
82
fdydxOut
[
G4FieldTrack::ncompSVEC
];
83
84
G4double
fhstep
= -1.0;
85
};
86
87
#endif
geant4
tree
geant4-10.6-release
source
geometry
magneticfield
include
G4RK547FEq3.hh
Built by
Jin Huang
. updated:
Wed Jun 29 2022 17:25:16
using
1.8.2 with
ECCE GitHub integration