62 G4cout <<
"*************** " << fType <<
" *****************" <<
G4endl
64 << std::setw(15) <<
"Safety/mm" <<
" "
65 << std::setw(15) <<
"Distance/mm" <<
" "
66 << std::setw(52) <<
"Position (local coordinates)"
69 << std::setw(15) << motherSafety /
millimeter <<
" "
70 << std::setw(15) <<
"N/C" <<
" " << localPoint <<
" - "
74 if ( motherSafety < 0.0 )
77 message <<
"Negative Safety In Voxel Navigation !" <<
G4endl
78 <<
" Current solid " << motherSolid->
GetName()
80 <<
" for the current (local) point " << localPoint;
81 message <<
" Solid info: " << *motherSolid <<
G4endl;
87 message <<
"Point is outside Current Volume - " <<
G4endl
89 <<
" is outside current volume '" << motherPhysical->
GetName()
92 message <<
" Estimated isotropic distance to solid (distToIn)= "
93 << estDistToSolid <<
G4endl;
94 if( estDistToSolid > 100.0 * motherSolid->
GetTolerance() )
96 message <<
" Solid info: " << *motherSolid <<
G4endl;
98 "Point is far outside Current Volume !" );
103 "Point is a little outside Current Volume.");
111 static const G4int precVerf = 16;
113 G4cout <<
" - Information on mother / key daughters ..." <<
G4endl;
114 G4cout <<
" Type " << std::setw(12) <<
"Solid-Name" <<
" "
115 << std::setw(3*(6+precVerf)) <<
" local point" <<
" "
116 << std::setw(4+precVerf) <<
"solid-Safety" <<
" "
117 << std::setw(4+precVerf) <<
"solid-Step" <<
" "
118 << std::setw(17) <<
"distance Method "
119 << std::setw(3*(6+precVerf)) <<
" local direction" <<
" "
121 G4cout <<
" Mother " << std::setw(12) << motherSolid->
GetName() <<
" "
122 << std::setw(4+precVerf) << localPoint <<
" "
123 << std::setw(4+precVerf) << motherSafety <<
" "
125 G4cout.precision(oldprec);
147 intersectionPoint = samplePoint + sampleStep * sampleDirection;
148 EInside insideIntPt = sampleSolid->
Inside(intersectionPoint);
151 G4String solidResponse =
"-kInside-";
153 { solidResponse =
"-kOutside-"; }
155 { solidResponse =
"-kSurface-"; }
159 G4cout <<
" Invoked Inside() for solid: "
161 <<
". Solid replied: " << solidResponse <<
G4endl
162 <<
" For point p: " << intersectionPoint
163 <<
", considered as 'intersection' point." <<
G4endl;
166 G4double safetyIn = -1, safetyOut = -1;
167 G4double newDistIn = -1, newDistOut = -1;
170 safetyIn = sampleSolid->
DistanceToIn(intersectionPoint);
171 newDistIn = sampleSolid->
DistanceToIn(intersectionPoint,
183 message.precision(16);
184 message <<
"Conflicting response from Solid." <<
G4endl
185 <<
" Inaccurate solid DistanceToIn"
187 <<
" Solid gave DistanceToIn = "
188 << sampleStep <<
" yet returns " << solidResponse
189 <<
" for this point !" <<
G4endl
190 <<
" Original Point = " << samplePoint <<
G4endl
191 <<
" Original Direction = " << sampleDirection <<
G4endl
192 <<
" Intersection Point = " << intersectionPoint <<
G4endl
193 <<
" Safety values: " <<
G4endl;
196 message <<
" DistanceToIn(p) = " << safetyIn;
200 message <<
" DistanceToOut(p) = " << safetyOut;
203 message <<
" Solid Parameters: " << *sampleSolid;
211 if(
std::max( newDistIn, newDistOut ) <=
215 message <<
"Zero from both Solid DistanceIn and Out(p,v)." <<
G4endl
216 <<
" Identified point for which the solid "
218 <<
" has MAJOR problem: " <<
G4endl
219 <<
" --> Both DistanceToIn(p,v) and DistanceToOut(p,v) "
220 <<
"return Zero, an equivalent value or negative value."
222 <<
" Solid: " << sampleSolid <<
G4endl
223 <<
" Point p= " << intersectionPoint <<
G4endl
224 <<
" Direction v= " << sampleDirection <<
G4endl
225 <<
" DistanceToIn(p,v) = " << newDistIn <<
G4endl
226 <<
" DistanceToOut(p,v,..) = " << newDistOut <<
G4endl
227 <<
" Safety values: " <<
G4endl
228 <<
" DistanceToIn(p) = " << safetyIn <<
G4endl
229 <<
" DistanceToOut(p) = " << safetyOut;
238 static const G4int precVerf= 20;
241 << std::setw(12) << sampleSolid->
GetName() <<
" "
242 << std::setw(4+precVerf) << samplePoint <<
" "
243 << std::setw(4+precVerf) << sampleSafety <<
" "
244 << std::setw(4+precVerf) << sampleStep <<
" "
245 << std::setw(16) <<
"distanceToIn" <<
" "
246 << std::setw(4+precVerf) << localDirection <<
" "
248 G4cout.precision(oldprec);
271 G4bool SuspiciousDaughterDist = ( sampleStep >= motherStep )
278 msg <<
" WARNING - Called with 'infinite' step. " <<
G4endl;
279 msg <<
" Checks have no meaning if daughter step is infinite." <<
G4endl;
282 msg <<
" sampleStep < kInfinity " << (sampleStep<
kInfinity) << G4endl;
284 msg <<
" Returning immediately.";
285 G4Exception(
"G4NavigationLogger::CheckDaughterEntryPoint()",
299 G4ThreeVector localExitMotherPos = localPoint+motherStep*localDirection;
305 G4ThreeVector localEntryInDaughter = localPoint+sampleStep*localDirection;
306 EInside insideMother = motherSolid->
Inside( localEntryInDaughter );
308 G4String solidResponse =
"-kInside-";
309 if (insideMother ==
kOutside) { solidResponse =
"-kOutside-"; }
310 else if (insideMother ==
kSurface) { solidResponse =
"-kSurface-"; }
312 G4double distToReEntry = distExitToReEntry + motherStep;
313 G4ThreeVector localReEntryPoint = localPoint+distToReEntry*localDirection;
316 G4bool DaughterEntryIsOutside = SuspiciousDaughterDist
317 && ( (sampleStep < distToReEntry) || (insideMother ==
kOutside ) );
321 G4ThreeVector sampleEntryPoint = samplePoint+sampleStep*sampleDirection;
324 G4double sampleExitDist = sampleStep+sampleCrossingDist;
325 G4ThreeVector sampleExitPoint = samplePoint+sampleExitDist*sampleDirection;
327 G4bool TransitProblem = ( (sampleStep < motherStep)
328 && (sampleExitDist > motherStep + kCarTolerance) )
329 || ( EntryIsMotherExit && (sampleCrossingDist > kCarTolerance) );
331 if( DaughterEntryIsOutside
333 || (SuspiciousDaughterDist && (
fVerbose > 3) ) )
338 if( DaughterEntryIsOutside )
340 msg <<
"WARNING> Intersection distance to Daughter volume is further"
341 <<
" than the distance to boundary." <<
G4endl
342 <<
" It appears that part of the daughter volume is *outside*"
343 <<
" this mother. " <<
G4endl;
344 msg <<
" One of the following checks signaled a problem:" << G4endl
345 <<
" -sampleStep (dist to daugh) < mother-exit dist + distance "
346 <<
"to ReEntry point for mother " << G4endl
347 <<
" -position of daughter intersection is outside mother volume."
350 else if( TransitProblem )
352 G4double protrusion = sampleExitDist - motherStep;
354 msg <<
"WARNING> Daughter volume extends beyond mother boundary. "
356 if ( ( sampleStep < motherStep )
357 && (sampleExitDist > motherStep + kCarTolerance ) )
360 msg <<
" Crossing distance in the daughter causes is to extend"
361 <<
" beyond the mother exit. " <<
G4endl;
362 msg <<
" Length protruding = " << protrusion <<
G4endl;
364 if( EntryIsMotherExit )
367 msg <<
" Intersection distance to Daughter is within "
368 <<
" tolerance of the distance" <<
G4endl;
369 msg <<
" to the mother boundary * and * " <<
G4endl;
370 msg <<
" the crossing distance in the daughter is > tolerance."
376 msg <<
"NearMiss> Intersection to Daughter volume is in extension past the"
377 <<
" current exit point of the mother volume." <<
G4endl;
378 msg <<
" This is not an error - just an unusual occurrence,"
379 <<
" possible in the case of concave volume. " <<
G4endl;
381 msg <<
"---- Information about intersection with daughter, mother: "
383 msg <<
" sampleStep (daughter) = " << sampleStep << G4endl
384 <<
" motherStep = " << motherStep << G4endl
385 <<
" distToRentry(mother) = " << distToReEntry << G4endl
386 <<
" Inside(entry pnt daug): " << solidResponse << G4endl
387 <<
" dist across daughter = " << sampleCrossingDist <<
G4endl;
388 msg <<
" Mother Name (Solid) : " << motherSolid->
GetName() << G4endl
389 <<
" In local (mother) coordinates: " << G4endl
390 <<
" Starting Point = " << localPoint << G4endl
391 <<
" Direction = " << localDirection << G4endl
392 <<
" Exit Point (mother)= " << localExitMotherPos << G4endl
393 <<
" Entry Point (daughter)= " << localPoint+sampleStep*localDirection
397 msg <<
" ReEntry Point (mother)= " << localReEntryPoint <<
G4endl;
401 msg <<
" No ReEntry - track does not encounter mother volume again! "
404 msg <<
" Daughter Name (Solid): " << sampleSolid->
GetName() << G4endl
405 <<
" In daughter coordinates: " << G4endl
406 <<
" Starting Point = " << samplePoint << G4endl
407 <<
" Direction = " << sampleDirection << G4endl
408 <<
" Entry Point (daughter)= " << sampleEntryPoint
410 msg <<
" Description of mother solid: " << G4endl
411 << *motherSolid << G4endl
412 <<
" Description of daughter solid: " << G4endl
413 << *sampleSolid <<
G4endl;
416 if( DaughterEntryIsOutside || TransitProblem )
423 <<
" -- Checked distance of Entry to daughter vs exit of mother"
445 << std::setw(15) << motherSafety <<
" "
446 << std::setw(15) << motherStep <<
" " << localPoint <<
" - "
450 if( ( motherStep < 0.0 ) || ( motherStep >=
kInfinity) )
456 message <<
"Current point is outside the current solid !" <<
G4endl
457 <<
" Problem in Navigation" <<
G4endl
458 <<
" Point (local coordinates): "
460 <<
" Local Direction: " << localDirection <<
G4endl
461 <<
" Solid: " << motherSolid->
GetName();
464 G4cout.precision(oldPrOut);
465 G4cerr.precision(oldPrErr);
469 static const G4int precVerf = 20;
471 G4cout <<
" Mother " << std::setw(12) << motherSolid->
GetName() <<
" "
472 << std::setw(4+precVerf) << localPoint <<
" "
473 << std::setw(4+precVerf) << motherSafety <<
" "
474 << std::setw(4+precVerf) << motherStep <<
" "
475 << std::setw(16) <<
"distanceToOut" <<
" "
476 << std::setw(4+precVerf) << localDirection <<
" "
478 G4cout.precision(oldprec);
495 banner = isMotherVolume;
499 G4String volumeType = isMotherVolume ?
" Mother " :
"Daughter";
502 G4cout <<
"************** " <<
fId <<
"::ComputeSafety() ****************"
505 << std::setw(15) <<
"Safety/mm" <<
" "
506 << std::setw(52) <<
"Position (local coordinates)"
510 << std::setw(15) << safety <<
" " << point <<
" - "
530 << std::setw(15) << sampleSafety <<
" ";
533 G4cout << std::setw(15) << sampleStep <<
" ";
537 G4cout << std::setw(15) <<
"Not-Available" <<
" ";
539 G4cout << samplePoint <<
" - "
543 G4cout <<
" dir= " << sampleDirection;
546 G4cout.precision(oldPrec);
561 const char* msg )
const
568 G4double normMag = std::sqrt(normMag2);
570 message.precision(10);
571 message <<
"============================================================"
573 message <<
" WARNING> Normal is not a unit vector. "
574 <<
" - but |normal| = " << normMag
575 <<
" - and |normal|^2 = " << normMag2 << G4endl
576 <<
" which differ from 1.0 by: " << G4endl
577 <<
" |normal|-1 = " << normMag - 1.0
578 <<
" and |normal|^2 - 1 = " << normMag2 - 1.0 << G4endl
579 <<
" n = " << unitNormal <<
G4endl;
580 message <<
" Info string: " << msg <<
G4endl;
581 message <<
"============================================================"
584 message.precision(16);
586 message <<
" Information on call to DistanceToOut: " <<
G4endl;
587 message <<
" Position = " << localPoint << G4endl
588 <<
" Direction = " << localDirection <<
G4endl;
589 message <<
" Obtained> distance = " << step <<
G4endl;
590 message <<
" > Exit position = " << localPoint+step*localDirection
592 message <<
" Parameters of solid: " <<
G4endl;
594 message <<
"============================================================";
611 const char* msg )
const
618 G4double normMag = std::sqrt(normMag2);
620 message.precision(10);
621 message <<
"============================================================"
623 message <<
" WARNING> Rotated n(ormal) is not a unit vector. " << G4endl
624 <<
" |normal| = " << normMag
625 <<
" and |normal|^2 = " << normMag2 << G4endl
626 <<
" Diff from 1.0: " << G4endl
627 <<
" |normal|-1 = " << normMag - 1.0
628 <<
" and |normal|^2 - 1 = " << normMag2 - 1.0 <<
G4endl;
629 message <<
" Rotated n = (" << rotatedNormal.
x() <<
"," << rotatedNormal.
y() <<
","
630 << rotatedNormal.
z() <<
")" <<
G4endl;
631 message <<
" Original n = (" << originalNormal.
x() <<
"," << originalNormal.
y() <<
","
632 << originalNormal.
z() <<
")" <<
G4endl;
633 message <<
" Info string: " << msg <<
G4endl;
634 message <<
"============================================================"
637 message.precision(16);
639 message <<
" Information on RotationMatrix : " <<
G4endl;
640 message <<
" Original: " <<
G4endl;
641 message << rotationM <<
G4endl;
642 message <<
" Inverse (used in transformation): " <<
G4endl;
644 message <<
"============================================================";
672 if( solid ==
nullptr )
675 "Erroneous call to ReportOutsideMother: no Solid is available");
693 if( safetyToOut > kCarTolerance
694 && ( distToOut < 0.0 || distToOut >=
kInfinity ) )
699 msg1 <<
" Dangerous inconsistency in response of solid." <<
G4endl
702 msg1 <<
" Mother volume gives safety > 0 despite being called for *Outside* point "
704 <<
" Location = " << localPoint <<
G4endl
705 <<
" Direction= " << localDirection <<
G4endl
706 <<
" - Safety (Isotropic d) = " << safetyToOut <<
G4endl
707 <<
" - Intersection Distance= " << distToOut <<
G4endl
724 if( std::fabs(distToOut) < kCarTolerance )
730 msg <<
" Warning> DistanceToOut(p,v): "
731 <<
"Distance from surface is not rounded to zero" <<
G4endl;
743 msg <<
"============================================================"
745 msg <<
" WARNING> Current Point appears to be Outside mother volume !! "
747 msg <<
" Response of DistanceToOut was negative or kInfinity"
748 <<
" when called in " << fMethod <<
G4endl;
755 if( triggerDist <= 0.0 )
757 triggerDist =
std::max ( 1.0
e+6 * kCarTolerance,
762 ? ( safetyToIn > triggerDist )
763 : ( safetyToOut > triggerDist );
771 G4Exception( fMethod,
"GeomNav0003", exceptionType, msg);
774 namespace G4NavigationLogger_Namespace
790 if( solid ==
nullptr )
792 os <<
" ERROR> Solid is not available. Logical Volume = "
793 << logicalVol << std::endl;
813 const G4ThreeVector PointPlusDir = localPoint + epsilonDist * localDirection;
814 const G4ThreeVector PointMinusDir = localPoint - epsilonDist * localDirection;
815 const G4ThreeVector PointPlusNorm = localPoint + epsilonDist * exitNormal;
816 const G4ThreeVector PointMinusNorm = localPoint - epsilonDist * exitNormal;
824 os <<
" Current physical volume = " << physical->
GetName() <<
G4endl;
825 os <<
" Position (loc) = " << localPoint <<
G4endl
826 <<
" Direction (dir) = " << localDirection <<
G4endl;
827 os <<
" For confirmation:" <<
G4endl;
828 os <<
" Response of DistanceToOut (loc, +dir)= " << distToOut <<
G4endl;
829 os <<
" Response of DistanceToOut (loc, -dir)= " << distToOutNeg <<
G4endl;
831 os <<
" Inside responds = " << inSolid <<
" , ie: ";
834 os <<
" Outside -- a problem, as observed in " << fMethod <<
G4endl;
838 os <<
" Surface -- unexpected / inconsistent response ! " <<
G4endl;
842 os <<
" Inside -- unexpected / inconsistent response ! " <<
G4endl;
844 os <<
" Obtain safety(ToIn) = " << safetyToIn <<
G4endl;
845 os <<
" Obtain safety(ToOut) = " << safetyToOut <<
G4endl;
846 os <<
" Response of DistanceToIn (loc, +dir)= " << distToInPos <<
G4endl;
847 os <<
" Response of DistanceToIn (loc, -dir)= " << distToInNeg <<
G4endl;
849 os <<
" Exit Normal at loc = " << exitNormal <<
G4endl;
850 os <<
" Dir . Normal = " << exitNormal.dot( localDirection );
853 os <<
" Checking points moved from position by distance/direction." << G4endl
854 <<
" Solid responses: " << G4endl
855 <<
" +eps in direction : "
857 <<
" +eps in Normal : "
859 <<
" -eps in direction : "
861 <<
" -eps in Normal : "
864 os <<
" Parameters of solid: " <<
G4endl;
866 os <<
"============================================================";