Geant4 11.4.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4EqEMFieldWithEDM.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// G4EqEMFieldWithEDM
27//
28// Class description:
29//
30// This is the right-hand side of equation of motion in a combined
31// electric and magnetic field, with spin tracking for both MDM and
32// EDM terms.
33
34// Author: Kevin Lynch (Boston Univ.), 19.02.2009 - Based on G4EqEMFieldWithSpin
35// -------------------------------------------------------------------
36#ifndef G4EQEMFIELDWITHEDM_HH
37#define G4EQEMFIELDWITHEDM_HH
38
39#include "G4ChargeState.hh"
40#include "G4EquationOfMotion.hh"
41
43
44/**
45 * @brief G4EqEMFieldWithEDM implements the right-hand side of equation of
46 * motion in a combined electric and magnetic field, with spin tracking for
47 * both MDM and EDM terms.
48 */
49
51{
52 public:
53
54 /**
55 * Constructor for G4EqEMFieldWithEDM.
56 * @param[in] emField Pointer to the electromagnetic field.
57 */
59
60 /**
61 * Default Destructor.
62 */
63 ~G4EqEMFieldWithEDM() override = default;
64
65 /**
66 * Sets the charge, momentum and mass of the current particle.
67 * Used to set the equation's coefficients.
68 * @param[in] particleCharge Magnetic charge and moments in e+ units.
69 * @param[in] MomentumXc Particle momentum.
70 * @param[in] mass Particle mass.
71 */
72 void SetChargeMomentumMass(G4ChargeState particleCharge, // in e+ units
73 G4double MomentumXc,
74 G4double mass) override;
75
76 /**
77 * Calculates the value of the derivative, given the value of the
78 * electromagnetic 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 magnetic anomaly.
89 */
90 inline void SetAnomaly(G4double a) { anomaly = a; }
91 inline G4double GetAnomaly() const { return anomaly; }
92
93 /**
94 * Setter and getter for EDM eta parameter.
95 */
96 inline void SetEta(G4double n) { eta = n; }
97 inline G4double GetEta() const { return eta; }
98
99 /**
100 * Returns the equation type-ID, "kEqEMfieldWithEDM".
101 */
102 inline G4EquationType GetEquationType() const override { return kEqEMfieldWithEDM; }
103
104 private:
105
106 G4double charge{0.}, mass{0.}, magMoment{0.}, spin{0.};
107
108 G4double fElectroMagCof{0.} ;
109 G4double fMassCof{0.};
110
111 G4double omegac{0.}, anomaly{0.0011659208}, eta{0.};
112 G4double beta{0.}, gamma{0.};
113};
114
115#endif
G4EquationType
G4EquationType defines the types of equations of motion of a particle in a field in Geant4.
@ kEqEMfieldWithEDM
double G4double
Definition G4Types.hh:83
G4ChargeState is a container for magnetic charge and moments.
void EvaluateRhsGivenB(const G4double y[], const G4double Field[], G4double dydx[]) const override
~G4EqEMFieldWithEDM() override=default
void SetEta(G4double n)
void SetAnomaly(G4double a)
G4double GetAnomaly() const
void SetChargeMomentumMass(G4ChargeState particleCharge, G4double MomentumXc, G4double mass) override
G4EquationType GetEquationType() const override
G4EqEMFieldWithEDM(G4ElectroMagneticField *emField)
G4double GetEta() const
G4EquationOfMotion(G4Field *Field)