#include <G4ITSafetyHelper.hh>
Definition at line 54 of file G4ITSafetyHelper.hh.
◆ G4ITSafetyHelper()
G4ITSafetyHelper::G4ITSafetyHelper |
( |
| ) |
|
Definition at line 41 of file G4ITSafetyHelper.cc.
42{
43 fpPathFinder = nullptr;
44
45
46
47
48 fpMassNavigator = nullptr;
49 fMassNavigatorId = -1;
50}
◆ ~G4ITSafetyHelper()
G4ITSafetyHelper::~G4ITSafetyHelper |
( |
| ) |
|
|
overridedefault |
◆ CheckNextStep()
Definition at line 89 of file G4ITSafetyHelper.cc.
93{
94
95
96 G4double linstep = fpMassNavigator->CheckNextStep(position, direction,
97 currentMaxStep, newSafety);
100
101
102
103
104 return linstep;
105}
StateTypeHandle fpTrackState
◆ ComputeSafety()
Definition at line 107 of file G4ITSafetyHelper.cc.
109{
111
112
113
114
116 if ((moveLengthSq > 0.0))
117 {
118 if (!fUseParallelGeometries)
119 {
120
121 newSafety = fpMassNavigator->ComputeSafety(position, maxLength, true);
122 }
123 else
124 {
125
126 newSafety = fpPathFinder->ComputeSafety(position);
127 }
128
129
130 if (newSafety < maxLength)
131 {
134 }
135 }
136 else
137 {
138
139
140
141
143 }
144 return newSafety;
145}
◆ EnableParallelNavigation()
void G4ITSafetyHelper::EnableParallelNavigation |
( |
G4bool | parallel | ) |
|
|
inline |
◆ GetWorldVolume()
◆ InitialiseHelper()
void G4ITSafetyHelper::InitialiseHelper |
( |
| ) |
|
Definition at line 76 of file G4ITSafetyHelper.cc.
77{
79 if (fFirstCall)
80 {
82 }
83 fFirstCall = false;
84}
void InitialiseNavigator()
void NewTrackState() override
◆ InitialiseNavigator()
void G4ITSafetyHelper::InitialiseNavigator |
( |
| ) |
|
Definition at line 52 of file G4ITSafetyHelper.cc.
53{
55
56 G4ITTransportationManager* pTransportMgr =
58
60
61 if(fpMassNavigator == nullptr) abort();
62
63
64
65 G4VPhysicalVolume* worldPV = fpMassNavigator->GetWorldVolume();
66 if (worldPV == nullptr)
67 {
68 G4Exception(
"G4ITSafetyHelper::InitialiseNavigator",
70 "Found that existing tracking Navigator has NULL world");
71 }
72
73
74}
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
static G4ITTransportationManager * GetTransportationManager()
G4ITNavigator * GetNavigatorForTracking() const
static G4PathFinder * GetInstance()
Referenced by InitialiseHelper().
◆ Locate()
Definition at line 179 of file G4ITSafetyHelper.cc.
181{
182 if (!fUseParallelGeometries)
183 {
184 fpMassNavigator->LocateGlobalPointAndSetup(newPosition, &newDirection, true,
185 false);
186 }
187 else
188 {
189 fpPathFinder->Locate(newPosition, newDirection);
190 }
191}
◆ ReLocateWithinVolume()
void G4ITSafetyHelper::ReLocateWithinVolume |
( |
const G4ThreeVector & | pGlobalPoint | ) |
|
Definition at line 147 of file G4ITSafetyHelper.cc.
148{
149#ifdef G4VERBOSE
150 if (fVerbose > 0)
151 {
152
155 {
156
158 ed <<
" Safety Sphere: Radius = " <<
fpTrackState->fLastSafety;
160 ed <<
" New Location : Move = " << moveVec.
mag2();
161 ed <<
" Position = " << newPosition <<
G4endl;
162 G4Exception(
"G4ITSafetyHelper::ReLocateWithinVolume",
"GeomNav999",
164 "Unsafe Move> Asked to relocate beyond 'Safety sphere'.");
165 }
166 }
167#endif
168
169 if (!fUseParallelGeometries)
170 {
171 fpMassNavigator->LocateGlobalPointWithinVolume(newPosition);
172 }
173 else
174 {
175 fpPathFinder->ReLocate(newPosition);
176 }
177}
std::ostringstream G4ExceptionDescription
CLHEP::Hep3Vector G4ThreeVector
◆ SetCurrentSafety()
◆ SetVerboseLevel()
G4int G4ITSafetyHelper::SetVerboseLevel |
( |
G4int | lev | ) |
|
|
inline |
The documentation for this class was generated from the following files: