Geant4 11.4.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4Field.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// G4Field
27//
28// Class description:
29//
30// Abstract class for any kind of Field.
31// It allows any kind of field (vector, scalar, tensor and any set of them)
32// to be defined by implementing the inquiry function interface.
33//
34// The key method is GetFieldValue( const G4double Point[4],
35// ************* G4double* fieldArr )
36// Given an input position/time vector 'Point',
37// this method must return the value of the field in "fieldArr".
38//
39// A field must also specify whether it changes a track's energy:
40// DoesFieldChangeEnergy()
41// *********************
42// A field must co-work with a corresponding Equation of Motion, to
43// enable the integration of a particle's position, momentum and, optionally,
44// spin. For this a field and its equation of motion must follow the
45// same convention for the order of field components in the array "fieldArr"
46
47// Author: John Apostolakis (CERN), 10.03.1997
48// -------------------------------------------------------------------
49#ifndef G4FIELD_HH
50#define G4FIELD_HH
51
52#include "G4Types.hh"
53#include "G4FieldParameters.hh"
54#include "globals.hh"
55
56/**
57 * @brief G4Field is the abstract class for any kind of field.
58 * It allows any kind of field (vector, scalar, tensor and any set of them)
59 * to be defined by implementing the inquiry function interface.
60 * A field must co-work with a corresponding Equation of Motion, to
61 * enable the integration of a particle's position, momentum and, optionally,
62 * spin. For this a field and its equation of motion must follow the same
63 * convention for the order of field components.
64 */
65
67{
68 public:
69
70 /**
71 * Constructor for G4Field.
72 * @param[in] gravityOn Flag to indicate if gravity is enabled or not.
73 */
74 G4Field(G4bool gravityOn = false);
75
76 /**
77 * Default virtual Destructor.
78 */
79 virtual ~G4Field() = default;
80
81 /**
82 * Copy constructor and assignment operator.
83 */
84 G4Field( const G4Field& p) = default;
85 G4Field& operator = (const G4Field& p);
86
87 /**
88 * Given the position time vector 'Point', returns the value of the
89 * field in the array 'fieldArr'. Notes:
90 * 1) The 'Point' vector has the following structure:
91 * Point[0] is x ( position, in Geant4 units )
92 * Point[1] is y
93 * Point[2] is z
94 * Point[3] is t ( time, in Geant4 units )
95 * 2) The convention for the components of the field array 'fieldArr'
96 * are determined by the type of field.
97 * @param[in] Point The position time vector.
98 * @param[out] fieldArr The field array in output.
99 */
100 virtual void GetFieldValue( const G4double Point[4],
101 G4double* fieldArr ) const = 0;
102
103 /**
104 * Each type/class of field should respond the field does change energy.
105 * For example:
106 * - an electric field should return "true"
107 * - a pure magnetic field should return "false"
108 */
109 virtual G4bool DoesFieldChangeEnergy() const = 0;
110
111 /**
112 * Returns the field type-ID, "kUserFieldType".
113 * This should be overriden in derived classes.
114 */
115 virtual G4FieldType GetFieldType() const { return kUserFieldType; }
116
117 /**
118 * Replies if the field includes gravity.
119 * @returns true if the field does include gravity.
120 */
121 inline G4bool IsGravityActive() const { return fGravityActive; }
122 // Does this field include gravity?
123
124 /**
125 * Sets the gravity flag.
126 */
127 inline void SetGravityActive(G4bool OnOffFlag) { fGravityActive = OnOffFlag; }
128
129 /**
130 * Interface method to implement cloning, needed by multi-threading.
131 * Here issuing a fatal exception, as expecting this to be implemented
132 * concretely in derived classes.
133 */
134 virtual G4Field* Clone() const;
135
136 public:
137
138 static constexpr G4int MAX_NUMBER_OF_COMPONENTS = 24;
139
140 private:
141
142 G4bool fGravityActive = false;
143};
144
145#endif
G4FieldType
G4FieldType defines the available fields in Geant4.
@ kUserFieldType
User defined field type.
double G4double
Definition G4Types.hh:83
bool G4bool
Definition G4Types.hh:86
int G4int
Definition G4Types.hh:85
G4Field is the abstract class for any kind of field. It allows any kind of field (vector,...
Definition G4Field.hh:67
G4Field(const G4Field &p)=default
static constexpr G4int MAX_NUMBER_OF_COMPONENTS
Definition G4Field.hh:138
void SetGravityActive(G4bool OnOffFlag)
Definition G4Field.hh:127
virtual ~G4Field()=default
virtual void GetFieldValue(const G4double Point[4], G4double *fieldArr) const =0
G4bool IsGravityActive() const
Definition G4Field.hh:121
virtual G4FieldType GetFieldType() const
Definition G4Field.hh:115
virtual G4bool DoesFieldChangeEnergy() const =0
virtual G4Field * Clone() const
Definition G4Field.cc:45
G4Field & operator=(const G4Field &p)
Definition G4Field.cc:38
G4Field(G4bool gravityOn=false)
Definition G4Field.cc:33