37using CLHEP::millimeter;
58 G4String fType = fId +
"::ComputeStep()";
60 if ( fVerbose == 1 || fVerbose > 4 )
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 )
76 std::ostringstream message;
77 message <<
"Negative Safety In Voxel Navigation !" <<
G4endl
78 <<
" Current solid " << motherSolid->
GetName()
79 <<
" gave negative safety: " << motherSafety / millimeter <<
G4endl
80 <<
" for the current (local) point " << localPoint;
81 message <<
" Solid info: " << *motherSolid <<
G4endl;
86 std::ostringstream message;
87 message <<
"Point is outside Current Volume - " <<
G4endl
88 <<
" Point " << localPoint / millimeter
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);
144 if ( sampleStep < kInfinity )
147 intersectionPoint = samplePoint + sampleStep * sampleDirection;
148 EInside insideIntPt = sampleSolid->
Inside(intersectionPoint);
149 G4String fType = fId +
"::ComputeStep()";
151 G4String solidResponse =
"-kInside-";
153 { solidResponse =
"-kOutside-"; }
155 { solidResponse =
"-kSurface-"; }
157 if ( fVerbose == 1 || fVerbose > 4 )
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,
182 std::ostringstream message;
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 ) <=
214 std::ostringstream message;
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 )
272 && ( sampleStep < kInfinity );
274 if( sampleStep >= kInfinity )
278 msg <<
" WARNING - Called with 'infinite' step. " <<
G4endl;
279 msg <<
" Checks have no meaning if daughter step is infinite." <<
G4endl;
280 msg <<
" kInfinity = " << kInfinity / millimeter <<
G4endl;
281 msg <<
" sampleStep = " << sampleStep / millimeter <<
G4endl;
282 msg <<
" sampleStep < kInfinity " << (sampleStep<kInfinity) <<
G4endl;
283 msg <<
" kInfinity - sampleStep " << (kInfinity-sampleStep) / millimeter <<
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;
317 G4bool DaughterEntryIsOutside = SuspiciousDaughterDist
318 && ( (sampleStep * (1.0+eps) < distToReEntry) || (insideMother ==
kOutside ) );
322 G4ThreeVector sampleEntryPoint = samplePoint+sampleStep*sampleDirection;
325 G4double sampleExitDist = sampleStep+sampleCrossingDist;
326 G4ThreeVector sampleExitPoint = samplePoint+sampleExitDist*sampleDirection;
328 G4bool TransitProblem = ( (sampleStep < motherStep)
330 || ( EntryIsMotherExit && (sampleCrossingDist >
kCarTolerance) );
332 if( DaughterEntryIsOutside
334 || (SuspiciousDaughterDist && (fVerbose > 3) ) )
339 if( DaughterEntryIsOutside )
341 msg <<
"WARNING> Intersection distance to Daughter volume is further"
342 <<
" than the distance to boundary." <<
G4endl
343 <<
" It appears that part of the daughter volume is *outside*"
344 <<
" this mother. " <<
G4endl;
345 msg <<
" One of the following checks signaled a problem:" <<
G4endl
346 <<
" -sampleStep (dist to daugh) < mother-exit dist + distance "
347 <<
"to ReEntry point for mother " <<
G4endl
348 <<
" -position of daughter intersection is outside mother volume."
351 else if( TransitProblem )
353 G4double protrusion = sampleExitDist - motherStep;
355 msg <<
"WARNING> Daughter volume extends beyond mother boundary. "
357 if ( ( sampleStep < motherStep )
361 msg <<
" Crossing distance in the daughter causes is to extend"
362 <<
" beyond the mother exit. " <<
G4endl;
363 msg <<
" Length protruding = " << protrusion <<
G4endl;
365 if( EntryIsMotherExit )
368 msg <<
" Intersection distance to Daughter is within "
369 <<
" tolerance of the distance" <<
G4endl;
370 msg <<
" to the mother boundary * and * " <<
G4endl;
371 msg <<
" the crossing distance in the daughter is > tolerance."
377 msg <<
"NearMiss> Intersection to Daughter volume is in extension past the"
378 <<
" current exit point of the mother volume." <<
G4endl;
379 msg <<
" This is not an error - just an unusual occurrence,"
380 <<
" possible in the case of concave volume. " <<
G4endl;
382 msg <<
"---- Information about intersection with daughter, mother: "
384 msg <<
" sampleStep (daughter) = " << sampleStep <<
G4endl
385 <<
" motherStep = " << motherStep <<
G4endl
386 <<
" distToRentry(mother) = " << distToReEntry <<
G4endl
387 <<
" Inside(entry pnt daug): " << solidResponse <<
G4endl
388 <<
" dist across daughter = " << sampleCrossingDist <<
G4endl;
389 msg <<
" Mother Name (Solid) : " << motherSolid->
GetName() <<
G4endl
390 <<
" In local (mother) coordinates: " <<
G4endl
391 <<
" Starting Point = " << localPoint <<
G4endl
392 <<
" Direction = " << localDirection <<
G4endl
393 <<
" Exit Point (mother)= " << localExitMotherPos <<
G4endl
394 <<
" Entry Point (daughter)= " << localPoint+sampleStep*localDirection
396 if( distToReEntry < kInfinity )
398 msg <<
" ReEntry Point (mother)= " << localReEntryPoint <<
G4endl;
402 msg <<
" No ReEntry - track does not encounter mother volume again! "
405 msg <<
" Daughter Name (Solid): " << sampleSolid->
GetName() <<
G4endl
406 <<
" In daughter coordinates: " <<
G4endl
407 <<
" Starting Point = " << samplePoint <<
G4endl
408 <<
" Direction = " << sampleDirection <<
G4endl
409 <<
" Entry Point (daughter)= " << sampleEntryPoint
411 msg <<
" Description of mother solid: " <<
G4endl
413 <<
" Description of daughter solid: " <<
G4endl
414 << *sampleSolid <<
G4endl;
415 G4String fType = fId +
"::ComputeStep()";
417 if( DaughterEntryIsOutside || TransitProblem )
424 <<
" -- Checked distance of Entry to daughter vs exit of mother"
443 if ( fVerbose == 1 || fVerbose > 4 )
446 << std::setw(15) << motherSafety <<
" "
447 << std::setw(15) << motherStep <<
" " << localPoint <<
" - "
451 if( ( motherStep < 0.0 ) || ( motherStep >= kInfinity) )
453 G4String fType = fId +
"::ComputeStep()";
456 std::ostringstream message;
457 message <<
"Current point is outside the current solid !" <<
G4endl
458 <<
" Problem in Navigation" <<
G4endl
459 <<
" Point (local coordinates): "
461 <<
" Local Direction: " << localDirection <<
G4endl
462 <<
" Solid: " << motherSolid->
GetName();
465 G4cout.precision(oldPrOut);
466 G4cerr.precision(oldPrErr);
470 static const G4int precVerf = 20;
472 G4cout <<
" Mother " << std::setw(12) << motherSolid->
GetName() <<
" "
473 << std::setw(4+precVerf) << localPoint <<
" "
474 << std::setw(4+precVerf) << motherSafety <<
" "
475 << std::setw(4+precVerf) << motherStep <<
" "
476 << std::setw(16) <<
"distanceToOut" <<
" "
477 << std::setw(4+precVerf) << localDirection <<
" "
479 G4cout.precision(oldprec);
496 banner = isMotherVolume;
500 G4String volumeType = isMotherVolume ?
" Mother " :
"Daughter";
503 G4cout <<
"************** " << fId <<
"::ComputeSafety() ****************"
506 << std::setw(15) <<
"Safety/mm" <<
" "
507 << std::setw(52) <<
"Position (local coordinates)"
511 << std::setw(15) << safety <<
" " << point <<
" - "
531 << std::setw(15) << sampleSafety <<
" ";
534 G4cout << std::setw(15) << sampleStep <<
" ";
538 G4cout << std::setw(15) <<
"Not-Available" <<
" ";
540 G4cout << samplePoint <<
" - "
544 G4cout <<
" dir= " << sampleDirection;
547 G4cout.precision(oldPrec);
562 const char* msg )
const
565 G4bool badLength = ( std::fabs ( normMag2 - 1.0 ) > CLHEP::perMillion );
569 G4double normMag = std::sqrt(normMag2);
571 message.precision(10);
572 message <<
"============================================================"
574 message <<
" WARNING> Normal is not a unit vector. "
575 <<
" - but |normal| = " << normMag
576 <<
" - and |normal|^2 = " << normMag2 <<
G4endl
577 <<
" which differ from 1.0 by: " <<
G4endl
578 <<
" |normal|-1 = " << normMag - 1.0
579 <<
" and |normal|^2 - 1 = " << normMag2 - 1.0 <<
G4endl
580 <<
" n = " << unitNormal <<
G4endl;
581 message <<
" Info string: " << msg <<
G4endl;
582 message <<
"============================================================"
585 message.precision(16);
587 message <<
" Information on call to DistanceToOut: " <<
G4endl;
588 message <<
" Position = " << localPoint <<
G4endl
589 <<
" Direction = " << localDirection <<
G4endl;
590 message <<
" Obtained> distance = " << step <<
G4endl;
591 message <<
" > Exit position = " << localPoint+step*localDirection
593 message <<
" Parameters of solid: " <<
G4endl;
595 message <<
"============================================================";
597 G4String fMethod = fId +
"::ComputeStep()";
612 const char* msg )
const
615 G4bool badLength = ( std::fabs ( normMag2 - 1.0 ) > CLHEP::perMillion );
619 G4double normMag = std::sqrt(normMag2);
621 message.precision(10);
622 message <<
"============================================================"
624 message <<
" WARNING> Rotated n(ormal) is not a unit vector. " <<
G4endl
625 <<
" |normal| = " << normMag
626 <<
" and |normal|^2 = " << normMag2 <<
G4endl
627 <<
" Diff from 1.0: " <<
G4endl
628 <<
" |normal|-1 = " << normMag - 1.0
629 <<
" and |normal|^2 - 1 = " << normMag2 - 1.0 <<
G4endl;
630 message <<
" Rotated n = (" << rotatedNormal.
x() <<
"," << rotatedNormal.
y() <<
","
631 << rotatedNormal.
z() <<
")" <<
G4endl;
632 message <<
" Original n = (" << originalNormal.
x() <<
"," << originalNormal.
y() <<
","
633 << originalNormal.
z() <<
")" <<
G4endl;
634 message <<
" Info string: " << msg <<
G4endl;
635 message <<
"============================================================"
638 message.precision(16);
640 message <<
" Information on RotationMatrix : " <<
G4endl;
641 message <<
" Original: " <<
G4endl;
642 message << rotationM <<
G4endl;
643 message <<
" Inverse (used in transformation): " <<
G4endl;
645 message <<
"============================================================";
647 G4String fMethod = fId +
"::ComputeStep()";
671 G4String fMethod = fId +
"::ComputeStep()";
673 if( solid ==
nullptr )
676 "Erroneous call to ReportOutsideMother: no Solid is available");
695 && ( distToOut < 0.0 || distToOut >= kInfinity ) )
700 msg1 <<
" Dangerous inconsistency in response of solid." <<
G4endl
703 msg1 <<
" Mother volume gives safety > 0 despite being called for *Outside* point "
705 <<
" Location = " << localPoint <<
G4endl
706 <<
" Direction= " << localDirection <<
G4endl
707 <<
" - Safety (Isotropic d) = " << safetyToOut <<
G4endl
708 <<
" - Intersection Distance= " << distToOut <<
G4endl
729 if( fReportSoftWarnings )
731 msg <<
" Warning> DistanceToOut(p,v): "
732 <<
"Distance from surface is not rounded to zero" <<
G4endl;
744 msg <<
"============================================================"
746 msg <<
" WARNING> Current Point appears to be Outside mother volume !! "
748 msg <<
" Response of DistanceToOut was negative or kInfinity"
749 <<
" when called in " << fMethod <<
G4endl;
756 if( triggerDist <= 0.0 )
759 fMinTriggerDistance );
763 ? ( safetyToIn > triggerDist )
764 : ( safetyToOut > triggerDist );
772 G4Exception( fMethod,
"GeomNav0003", exceptionType, msg);
786 G4String fMethod = fId +
"::ComputeStep()";
791 if( solid ==
nullptr )
793 os <<
" ERROR> Solid is not available. Logical Volume = "
794 << logicalVol << std::endl;
814 const G4ThreeVector PointPlusDir = localPoint + epsilonDist * localDirection;
815 const G4ThreeVector PointMinusDir = localPoint - epsilonDist * localDirection;
816 const G4ThreeVector PointPlusNorm = localPoint + epsilonDist * exitNormal;
817 const G4ThreeVector PointMinusNorm = localPoint - epsilonDist * exitNormal;
825 os <<
" Current physical volume = " << physical->
GetName() <<
G4endl;
826 os <<
" Position (loc) = " << localPoint <<
G4endl
827 <<
" Direction (dir) = " << localDirection <<
G4endl;
828 os <<
" For confirmation:" <<
G4endl;
829 os <<
" Response of DistanceToOut (loc, +dir)= " << distToOut <<
G4endl;
830 os <<
" Response of DistanceToOut (loc, -dir)= " << distToOutNeg <<
G4endl;
832 os <<
" Inside responds = " << inSolid <<
" , ie: ";
835 os <<
" Outside -- a problem, as observed in " << fMethod <<
G4endl;
839 os <<
" Surface -- unexpected / inconsistent response ! " <<
G4endl;
843 os <<
" Inside -- unexpected / inconsistent response ! " <<
G4endl;
845 os <<
" Obtain safety(ToIn) = " << safetyToIn <<
G4endl;
846 os <<
" Obtain safety(ToOut) = " << safetyToOut <<
G4endl;
847 os <<
" Response of DistanceToIn (loc, +dir)= " << distToInPos <<
G4endl;
848 os <<
" Response of DistanceToIn (loc, -dir)= " << distToInNeg <<
G4endl;
850 os <<
" Exit Normal at loc = " << exitNormal <<
G4endl;
851 os <<
" Dir . Normal = " << exitNormal.
dot( localDirection );
854 os <<
" Checking points moved from position by distance/direction." <<
G4endl
855 <<
" Solid responses: " <<
G4endl
856 <<
" +eps in direction : "
858 <<
" +eps in Normal : "
860 <<
" -eps in direction : "
862 <<
" -eps in Normal : "
865 os <<
" Parameters of solid: " <<
G4endl;
867 os <<
"============================================================";
const G4double kCarTolerance
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
std::ostringstream G4ExceptionDescription
G4GLOB_DLL std::ostream G4cerr
G4GLOB_DLL std::ostream G4cout
double dot(const Hep3Vector &) const
HepRotation inverse() const
static G4GeometryTolerance * GetInstance()
G4VSolid * GetSolid() const
void PreComputeStepLog(const G4VPhysicalVolume *motherPhysical, G4double motherSafety, const G4ThreeVector &localPoint) const
G4NavigationLogger(const G4String &id)
void CheckDaughterEntryPoint(const G4VSolid *sampleSolid, const G4ThreeVector &samplePoint, const G4ThreeVector &sampleDirection, const G4VSolid *motherSolid, const G4ThreeVector &localPoint, const G4ThreeVector &localDirection, G4double motherStep, G4double sampleStep) const
void PrintDaughterLog(const G4VSolid *sampleSolid, const G4ThreeVector &samplePoint, G4double sampleSafety, G4bool onlySafety, const G4ThreeVector &sampleDirection, G4double sampleStep) const
G4bool CheckAndReportBadNormal(const G4ThreeVector &unitNormal, const G4ThreeVector &localPoint, const G4ThreeVector &localDirection, G4double step, const G4VSolid *solid, const char *msg) const
void ComputeSafetyLog(const G4VSolid *solid, const G4ThreeVector &point, G4double safety, G4bool isMotherVolume, G4int banner=-1) const
void ReportVolumeAndIntersection(std::ostream &ostrm, const G4ThreeVector &localPoint, const G4ThreeVector &localDirection, const G4VPhysicalVolume *physical) const
void PostComputeStepLog(const G4VSolid *motherSolid, const G4ThreeVector &localPoint, const G4ThreeVector &localDirection, G4double motherStep, G4double motherSafety) const
void ReportOutsideMother(const G4ThreeVector &localPoint, const G4ThreeVector &localDirection, const G4VPhysicalVolume *motherPV, G4double tDist=30.0 *CLHEP::cm) const
void AlongComputeStepLog(const G4VSolid *sampleSolid, const G4ThreeVector &samplePoint, const G4ThreeVector &sampleDirection, const G4ThreeVector &localDirection, G4double sampleSafety, G4double sampleStep) const
G4LogicalVolume * GetLogicalVolume() const
const G4String & GetName() const
G4double GetTolerance() const
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
virtual G4ThreeVector SurfaceNormal(const G4ThreeVector &p) const =0
virtual G4double DistanceToIn(const G4ThreeVector &p, const G4ThreeVector &v) const =0
virtual G4GeometryType GetEntityType() const =0
const G4String EInsideNames[3]