130{
132
133 auto param =
135
136 if( !param->SkipEqualMaterials() )
137 {
138 return fnormalNav->ComputeStep(localPoint,
139 localDirection,
140 currentProposedStepLength,
141 newSafety,
142 history,
143 validExitNormal,
144 exitNormal,
145 exiting,
146 entering,
147 pBlockedPhysical,
148 blockedReplicaNo);
149 }
150
151
153
154
155
156
160
161
162
164
165
166
168
169
170
171
172 G4ThreeVector prevVoxelTranslation = containerPoint - localPoint;
173
174
175
176
177
178
179
180
181
182 G4int copyNo = param->GetReplicaNo(containerPoint,localDirection);
183
184 G4Material* currentMate = param->ComputeMaterial( copyNo, nullptr, nullptr );
186
187 G4VSolid* containerSolid = param->GetContainerSolid();
188 G4Material* nextMate;
192
193
194
195
196 fNumberZeroSteps = 0;
197 for(
G4int ii = 0; ii < fNoStepsAllowed+1; ++ii )
198 {
199 if( ii == fNoStepsAllowed ) {
200
201
204 std::ostringstream message;
205 message << "G4RegularNavigation::ComputeStepSkippingEqualMaterials()"
206 << "Stuck Track: potential geometry or navigation problem."
208 << " Track stuck, moving for more than "
209 << ii <<
" steps" <<
G4endl
210 <<
"- at point " << pGlobalpoint <<
G4endl
211 <<
" local direction: " << localDirection <<
G4endl;
212 G4Exception(
"G4RegularNavigation::ComputeStepSkippingEqualMaterials()",
213 "GeomRegNav1001",
215 message);
216 }
217 newStep = voxelBox->
DistanceToOut( localPoint, localDirection );
218 fLastStepWasZero = (newStep<fMinStep);
219 if( fLastStepWasZero )
220 {
221 ++fNumberZeroSteps;
222#ifdef G4DEBUG_NAVIGATION
223 if( fNumberZeroSteps > 1 )
224 {
227 std::ostringstream message;
228 message.precision(16);
229 message << "G4RegularNavigation::ComputeStepSkippingEqualMaterials(): another 'zero' step, # "
230 << fNumberZeroSteps
231 << ", at " << pGlobalpoint
232 << ", nav-comp-step calls # " << ii
233 << ", Step= " << newStep;
234 G4Exception(
"G4RegularNavigation::ComputeStepSkippingEqualMaterials()",
236 "Potential overlap in geometry!");
237 }
238#endif
239 if( fNumberZeroSteps > fActionThreshold_NoZeroSteps-1 )
240 {
241
242
243 newStep = std::min(101*kCarTolerance*std::pow(10,fNumberZeroSteps-2),0.1);
244#ifdef G4DEBUG_NAVIGATION
247 std::ostringstream message;
248 message.precision(16);
249 message <<
"Track stuck or not moving." <<
G4endl
250 << " Track stuck, not moving for "
251 << fNumberZeroSteps <<
" steps" <<
G4endl
252 << "- at point " << pGlobalpoint
253 <<
" (local point " << localPoint <<
")" <<
G4endl
254 << " local direction: " << localDirection
255 << " Potential geometry or navigation problem !"
257 << " Trying pushing it of " << newStep << " mm ...";
258 G4Exception(
"G4RegularNavigation::ComputeStepSkippingEqualMaterials()",
260 "Potential overlap in geometry!");
261#endif
262 }
263 if( fNumberZeroSteps > fAbandonThreshold_NoZeroSteps-1 )
264 {
265
266
269 std::ostringstream message;
270 message << "G4RegularNavigation::ComputeStepSkippingEqualMaterials()"
271 << "Stuck Track: potential geometry or navigation problem."
273 << " Track stuck, not moving for "
274 << fNumberZeroSteps <<
" steps" <<
G4endl
275 <<
"- at point " << pGlobalpoint <<
G4endl
276 <<
" local direction: " << localDirection <<
G4endl;
277 G4Exception(
"G4RegularNavigation::ComputeStepSkippingEqualMaterials()",
278 "GeomRegNav1004",
280 message);
281 }
282 }
283 else
284 {
285
286 fNumberZeroSteps = 0;
287 }
288 if( (bFirstStep) && (newStep < currentProposedStepLength) )
289 {
290 exiting = true;
291 }
292 bFirstStep = false;
293
294 newStep += kCarTolerance;
295 ourStep += newStep;
296 totalNewStep += newStep;
297
298
299
300 if(std::fabs(totalNewStep-currentProposedStepLength) < kCarTolerance)
301 {
302 return currentProposedStepLength;
303 }
304 if(totalNewStep > currentProposedStepLength)
305 {
307 AddStepLength(copyNo, newStep-totalNewStep+currentProposedStepLength);
308 return currentProposedStepLength;
309 }
311
312
313
314 containerPoint += newStep*localDirection;
316 {
317 break;
318 }
319
320
321
322 copyNo = param->GetReplicaNo(containerPoint, localDirection);
323 G4ThreeVector voxelTranslation = param->GetTranslation( copyNo );
324
325
326
327
328 localPoint += newStep*localDirection;
329 localPoint += prevVoxelTranslation - voxelTranslation;
330
331 prevVoxelTranslation = voxelTranslation;
332
333
334 nextMate = param->ComputeMaterial( copyNo, nullptr, nullptr );
335
336 if( currentMate != nextMate ) { break; }
337 }
338
339 return ourStep;
340}
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
G4VSolid * GetSolid() const
std::size_t GetDepth() const
const G4AffineTransform & GetTransform(G4int n) const
static G4RegularNavigationHelper * Instance()
void AddStepLength(G4int copyNo, G4double slen)
virtual EInside Inside(const G4ThreeVector &p) const =0
virtual G4double DistanceToOut(const G4ThreeVector &p, const G4ThreeVector &v, const G4bool calcNorm=false, G4bool *validNorm=nullptr, G4ThreeVector *n=nullptr) const =0