Geant4-11
G4FieldManager.icc
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// G4FieldManager inline implementation
27//
28// Author: John Apostolakis, 10.03.97 - design and implementation
29// -------------------------------------------------------------------
30
31inline
32const G4Field* G4FieldManager::GetDetectorField() const
33{
34 // If pointer is null, should this raise an exception ??
35
36 return fDetectorField;
37}
38
39inline
40G4bool G4FieldManager::DoesFieldExist() const
41{
42 return (fDetectorField != nullptr);
43}
44
45inline
46void G4FieldManager::SetChordFinder(G4ChordFinder* aChordFinder)
47{
48 fChordFinder= aChordFinder;
49}
50
51inline
52G4ChordFinder* G4FieldManager::GetChordFinder()
53{
54 return fChordFinder;
55}
56
57inline
58const G4ChordFinder* G4FieldManager::GetChordFinder() const
59{
60 return fChordFinder;
61}
62
63inline
64G4double G4FieldManager::GetDeltaIntersection() const
65{
66 return fDelta_Intersection_Val;
67}
68
69inline
70G4double G4FieldManager::GetDeltaOneStep() const
71{
72 return fDelta_One_Step_Value;
73}
74
75inline
76void G4FieldManager::SetDeltaOneStep(G4double valDeltaOneStep)
77{
78 fDelta_One_Step_Value= valDeltaOneStep;
79}
80
81inline
82void G4FieldManager::SetDeltaIntersection(G4double valDeltaIntersection)
83{
84 fDelta_Intersection_Val = valDeltaIntersection;
85}
86
87inline
88void G4FieldManager::SetAccuraciesWithDeltaOneStep(G4double valDeltaOneStep)
89{
90 fDelta_One_Step_Value= valDeltaOneStep;
91 fDelta_Intersection_Val = 0.4 * fDelta_One_Step_Value;
92}
93
94inline G4bool G4FieldManager::DoesFieldChangeEnergy() const
95{
96 return fFieldChangesEnergy;
97}
98
99inline void G4FieldManager::SetFieldChangesEnergy(G4bool value)
100{
101 fFieldChangesEnergy = value;
102}
103
104// Minimum for Relative accuracy of any Step
105//
106inline
107G4double G4FieldManager::GetMinimumEpsilonStep() const
108{
109 return fEpsilonMin;
110}
111
112inline
113void G4FieldManager::SetMinimumEpsilonStep( G4double newEpsMin )
114{
115 if( (newEpsMin > 0.0) && (std::fabs(1.0+newEpsMin) > 1.0) )
116 {
117 fEpsilonMin = newEpsMin;
118 }
119}
120
121// Maximum for Relative accuracy of any Step
122//
123inline
124G4double G4FieldManager::GetMaximumEpsilonStep() const
125{
126 return fEpsilonMax;
127}
128
129inline
130void G4FieldManager::SetMaximumEpsilonStep( G4double newEpsMax )
131{
132 if( (newEpsMax > 0.0)
133 && (newEpsMax >= fEpsilonMin )
134 && (std::fabs(1.0+newEpsMax)>1.0) )
135 {
136 fEpsilonMax = newEpsMax;
137 }
138}
139
140inline
141void G4FieldManager::ChangeDetectorField(G4Field* detectorField)
142{
143 G4int errorType = 2; // Fatal !
144 SetDetectorField( detectorField, errorType );
145}
146
147inline
148void G4FieldManager::ProposeDetectorField(G4Field* detectorField)
149{
150 // Note: this is equivalent to
151 // this->SetDetectorField( detectorField, 0 );
152 // but simpler!
153
154 fDetectorField = detectorField;
155 InitialiseFieldChangesEnergy();
156}