source: trunk/source/geometry/magneticfield/include/G4FieldManager.icc@ 1104

Last change on this file since 1104 was 921, checked in by garnier, 17 years ago

en test de gl2ps. Problemes de libraries

File size: 3.9 KB
Line 
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//
27// $Id: G4FieldManager.icc,v 1.12 2006/06/29 18:22:18 gunter Exp $
28// GEANT4 tag $Name: geant4-09-02-cand-01 $
29//
30//
31// G4FieldManager inline implementation
32//
33// -------------------------------------------------------------------
34
35inline
36const G4Field* G4FieldManager::GetDetectorField() const
37{
38 // If pointer is null, should this raise an exception ??
39 return fDetectorField;
40}
41
42inline
43G4bool G4FieldManager::DoesFieldExist() const
44{
45 return (fDetectorField != 0);
46}
47
48inline
49void G4FieldManager::SetChordFinder(G4ChordFinder *aChordFinder)
50{
51 fChordFinder= aChordFinder;
52}
53
54inline
55G4ChordFinder* G4FieldManager::GetChordFinder()
56{
57 return fChordFinder;
58}
59
60inline
61const G4ChordFinder* G4FieldManager::GetChordFinder() const
62{
63 return fChordFinder;
64}
65
66inline
67G4double G4FieldManager::GetDeltaIntersection() const
68{
69 return fDelta_Intersection_Val;
70}
71
72inline
73G4double G4FieldManager::GetDeltaOneStep() const
74{
75 return fDelta_One_Step_Value;
76}
77
78inline
79void G4FieldManager::SetDeltaOneStep(G4double valDeltaOneStep)
80{
81 fDelta_One_Step_Value= valDeltaOneStep;
82}
83
84inline
85void G4FieldManager::SetDeltaIntersection(G4double valDeltaIntersection)
86{
87 fDelta_Intersection_Val = valDeltaIntersection;
88}
89
90inline
91void G4FieldManager::SetAccuraciesWithDeltaOneStep(G4double valDeltaOneStep)
92{
93 fDelta_One_Step_Value= valDeltaOneStep;
94 fDelta_Intersection_Val = 0.4 * fDelta_One_Step_Value;
95}
96
97inline G4bool G4FieldManager::DoesFieldChangeEnergy() const
98{ return fFieldChangesEnergy;}
99
100inline void G4FieldManager::SetFieldChangesEnergy(G4bool value)
101{ fFieldChangesEnergy = value; }
102
103
104
105// Minimum for Relative accuracy of any Step
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
122inline
123G4double G4FieldManager::GetMaximumEpsilonStep() const
124{
125 return fEpsilonMax;
126}
127
128inline
129void G4FieldManager::SetMaximumEpsilonStep( G4double newEpsMax )
130{
131 if( (newEpsMax > 0.0)
132 && (newEpsMax >= fEpsilonMin )
133 && (std::fabs(1.0+newEpsMax)>1.0) )
134 {
135 fEpsilonMax = newEpsMax;
136 }
137}
Note: See TracBrowser for help on using the repository browser.