Geant4 11.4.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4RepleteEofM.hh
Go to the documentation of this file.
1//
2// ********************************************************************
3// * License and Disclaimer *
4// * *
5// * The Geant4 software is copyright of the Copyright Holders of *
6// * the Geant4 Collaboration. It is provided under the terms and *
7// * conditions of the Geant4 Software License, included in the file *
8// * LICENSE and available at http://cern.ch/geant4/license . These *
9// * include a list of copyright holders. *
10// * *
11// * Neither the authors of this software system, nor their employing *
12// * institutes,nor the agencies providing financial support for this *
13// * work make any representation or warranty, express or implied, *
14// * regarding this software system or assume any liability for its *
15// * use. Please see the license in the file LICENSE and URL above *
16// * for the full disclaimer and the limitation of liability. *
17// * *
18// * This code implementation is the result of the scientific and *
19// * technical work of the GEANT4 collaboration. *
20// * By using, copying, modifying or distributing the software (or *
21// * any work based on the software) you agree to acknowledge its *
22// * use in resulting scientific publications, and indicate your *
23// * acceptance of all terms of the Geant4 Software license. *
24// ********************************************************************
25//
26// G4RepleteEofM
27//
28// Class description:
29//
30// This is the right-hand side of equation of motion in a combined
31// field, including: magnetic, electric, gravity, and gradient B field,
32// as well as spin tracking.
33
34// Author: Peter Gumplinger (TRIUMF), 08.04.2013
35// -------------------------------------------------------------------
36#ifndef G4EOFM_HH
37#define G4EOFM_HH
38
39#include "G4ChargeState.hh"
40#include "G4EquationOfMotion.hh"
41
42class G4Field;
43
44/**
45 * @brief G4RepleteEofM is the right-hand side of equation of motion in a
46 * combined field, including: magnetic, electric, gravity, and gradient
47 * B field, as well as spin tracking.
48 */
49
51{
52 public:
53
54 /**
55 * Constructor for G4EquationOfMotion.
56 * @param[in] field Pointer to the field.
57 * @param[in] nvar The number of integration variables.
58 */
59 G4RepleteEofM(G4Field* field, G4int nvar = 8);
60
61 /**
62 * Default Destructor.
63 */
64 ~G4RepleteEofM() override = default;
65
66 /**
67 * Sets the charge, momentum and mass of the current particle.
68 * Used to set the equation's coefficients.
69 * @param[in] particleCharge Magnetic charge and moments in e+ units.
70 * @param[in] MomentumXc Particle momentum.
71 * @param[in] mass Particle mass.
72 */
73 void SetChargeMomentumMass(G4ChargeState particleCharge, // in e+ units
74 G4double MomentumXc,
75 G4double mass) override;
76
77 /**
78 * Calculates the value of the derivative, given the value of the field.
79 * @param[in] y Coefficients array.
80 * @param[in] Field Field value.
81 * @param[out] dydx Derivatives array.
82 */
83 void EvaluateRhsGivenB(const G4double y[],
84 const G4double Field[],
85 G4double dydx[] ) const override;
86
87 /**
88 * Setter and getter for the magnetic anomaly.
89 */
90 inline void SetAnomaly(G4double a) { anomaly = a; }
91 inline G4double GetAnomaly() const { return anomaly; }
92
93 /**
94 * Modifiers.
95 */
96 inline void SetBField() { fBfield = true; }
97 inline void SetEField() { fEfield = true; }
98 inline void SetgradB() { fgradB = true; }
99 inline void SetSpin() { fSpin = true; }
100
101 private:
102
103 G4int fNvar = 0;
104
105 G4bool fBfield=false, fEfield=false,
106 fGfield=false, fgradB=false, fSpin=false;
107
108 G4double charge=0.0, mass=0.0, magMoment=0.0, spin=0.0;
109
110 G4double ElectroMagCof=0.0;
111
112 G4double omegac=0.0, anomaly=0.0;
113 G4double beta=0.0, gamma=0.0;
114};
115
116#endif
double G4double
Definition G4Types.hh:83
bool G4bool
Definition G4Types.hh:86
int G4int
Definition G4Types.hh:85
G4ChargeState is a container for magnetic charge and moments.
G4EquationOfMotion(G4Field *Field)
G4Field is the abstract class for any kind of field. It allows any kind of field (vector,...
Definition G4Field.hh:67
void SetAnomaly(G4double a)
void EvaluateRhsGivenB(const G4double y[], const G4double Field[], G4double dydx[]) const override
~G4RepleteEofM() override=default
G4RepleteEofM(G4Field *field, G4int nvar=8)
void SetChargeMomentumMass(G4ChargeState particleCharge, G4double MomentumXc, G4double mass) override
G4double GetAnomaly() const