264{
266
267
268
269 G4bool SuspiciousDaughterDist = ( sampleStep >= motherStep )
270 && ( sampleStep < kInfinity );
271
272 if( sampleStep >= kInfinity )
273 {
275 msg.precision(12);
276 msg <<
" WARNING - Called with 'infinite' step. " <<
G4endl;
277 msg <<
" Checks have no meaning if daughter step is infinite." <<
G4endl;
278 msg <<
" kInfinity = " << kInfinity / millimeter <<
G4endl;
279 msg <<
" sampleStep = " << sampleStep / millimeter <<
G4endl;
280 msg <<
" sampleStep < kInfinity " << (sampleStep<kInfinity) <<
G4endl;
281 msg <<
" kInfinity - sampleStep " << (kInfinity-sampleStep) / millimeter <<
G4endl;
282 msg << " Returning immediately.";
283 G4Exception(
"G4NavigationLogger::CheckDaughterEntryPoint()",
285 return;
286 }
287
288
289
290
291
292
293
294
295
296
297 G4ThreeVector localExitMotherPos = localPoint+motherStep*localDirection;
299 localDirection);
300
301
302
303 G4ThreeVector localEntryInDaughter = localPoint+sampleStep*localDirection;
304 EInside insideMother = motherSolid->
Inside( localEntryInDaughter );
305
306 G4String solidResponse = "-kInside-";
307 if (insideMother ==
kOutside) { solidResponse =
"-kOutside-"; }
308 else if (insideMother ==
kSurface) { solidResponse =
"-kSurface-"; }
309
310 G4double distToReEntry = distExitToReEntry + motherStep;
311 G4ThreeVector localReEntryPoint = localPoint+distToReEntry*localDirection;
312
313
315 G4bool DaughterEntryIsOutside = SuspiciousDaughterDist
316 && ( (sampleStep * (1.0+eps) < distToReEntry) || (insideMother ==
kOutside ) );
318
319
320 G4ThreeVector sampleEntryPoint = samplePoint+sampleStep*sampleDirection;
322 sampleDirection );
323 G4double sampleExitDist = sampleStep+sampleCrossingDist;
324 G4ThreeVector sampleExitPoint = samplePoint+sampleExitDist*sampleDirection;
325
326 G4bool TransitProblem = ( (sampleStep < motherStep)
328 || ( EntryIsMotherExit && (sampleCrossingDist >
kCarTolerance) );
329
330 if( DaughterEntryIsOutside
331 || TransitProblem
332 || (SuspiciousDaughterDist && (fVerbose > 3) ) )
333 {
335 msg.precision(16);
336
337 if( DaughterEntryIsOutside )
338 {
339 msg << "WARNING> Intersection distance to Daughter volume is further"
340 <<
" than the distance to boundary." <<
G4endl
341 << " It appears that part of the daughter volume is *outside*"
342 <<
" this mother. " <<
G4endl;
343 msg <<
" One of the following checks signaled a problem:" <<
G4endl
344 << " -sampleStep (dist to daugh) < mother-exit dist + distance "
345 <<
"to ReEntry point for mother " <<
G4endl
346 << " -position of daughter intersection is outside mother volume."
348 }
349 else if( TransitProblem )
350 {
351 G4double protrusion = sampleExitDist - motherStep;
352
353 msg << "WARNING> Daughter volume extends beyond mother boundary. "
355 if ( ( sampleStep < motherStep )
357 {
358
359 msg << " Crossing distance in the daughter causes is to extend"
360 <<
" beyond the mother exit. " <<
G4endl;
361 msg <<
" Length protruding = " << protrusion <<
G4endl;
362 }
363 if( EntryIsMotherExit )
364 {
365
366 msg << " Intersection distance to Daughter is within "
367 <<
" tolerance of the distance" <<
G4endl;
368 msg <<
" to the mother boundary * and * " <<
G4endl;
369 msg << " the crossing distance in the daughter is > tolerance."
371 }
372 }
373 else
374 {
375 msg << "NearMiss> Intersection to Daughter volume is in extension past the"
376 <<
" current exit point of the mother volume." <<
G4endl;
377 msg << " This is not an error - just an unusual occurrence,"
378 <<
" possible in the case of concave volume. " <<
G4endl;
379 }
380 msg << "---- Information about intersection with daughter, mother: "
382 msg <<
" sampleStep (daughter) = " << sampleStep <<
G4endl
383 <<
" motherStep = " << motherStep <<
G4endl
384 <<
" distToRentry(mother) = " << distToReEntry <<
G4endl
385 <<
" Inside(entry pnt daug): " << solidResponse <<
G4endl
386 <<
" dist across daughter = " << sampleCrossingDist <<
G4endl;
387 msg <<
" Mother Name (Solid) : " << motherSolid->
GetName() <<
G4endl
388 <<
" In local (mother) coordinates: " <<
G4endl
389 <<
" Starting Point = " << localPoint <<
G4endl
390 <<
" Direction = " << localDirection <<
G4endl
391 <<
" Exit Point (mother)= " << localExitMotherPos <<
G4endl
392 << " Entry Point (daughter)= " << localPoint+sampleStep*localDirection
394 if( distToReEntry < kInfinity )
395 {
396 msg <<
" ReEntry Point (mother)= " << localReEntryPoint <<
G4endl;
397 }
398 else
399 {
400 msg << " No ReEntry - track does not encounter mother volume again! "
402 }
403 msg <<
" Daughter Name (Solid): " << sampleSolid->
GetName() <<
G4endl
404 <<
" In daughter coordinates: " <<
G4endl
405 <<
" Starting Point = " << samplePoint <<
G4endl
406 <<
" Direction = " << sampleDirection <<
G4endl
407 << " Entry Point (daughter)= " << sampleEntryPoint
409 msg <<
" Description of mother solid: " <<
G4endl
411 <<
" Description of daughter solid: " <<
G4endl
412 << *sampleSolid <<
G4endl;
413 G4String fType = fId + "::ComputeStep()";
414
415 if( DaughterEntryIsOutside || TransitProblem )
416 {
418 }
419 else
420 {
422 << " -- Checked distance of Entry to daughter vs exit of mother"
426 }
427 }
428}
const G4double kCarTolerance
G4double GetTolerance() const