60 G4ThreeVector stepEndPoint = fNavigator.GetLastStepEndPoint();
64 G4double distEndpointSq = (pGlobalpoint-stepEndPoint).mag2();
65 G4bool stayedOnEndpoint = distEndpointSq <
sqr(fkCarTolerance);
66 G4bool endpointOnSurface = fNavigator.EnteredDaughterVolume()
67 || fNavigator.ExitedMotherVolume();
70 if( motherPhysical != physicalVolume )
72 std::ostringstream msg;
73 msg <<
" Current (navigation) phys-volume: " << motherPhysical
75 <<
" Request made for phys-volume: " << physicalVolume
77 G4Exception(
"G4SafetyCalculator::SafetyInCurrentVolume",
"GeomNav0001",
79 "This method must be called only in the Current volume.");
82 if( !(endpointOnSurface && stayedOnEndpoint) )
100 safety = fVoxelSafety.ComputeSafety(localPoint,
101 *motherPhysical, pMaxLength);
105 safety=fnormalNav.ComputeSafety(localPoint,fNavHistory,pMaxLength);
111 safety=fparamNav.ComputeSafety(localPoint,fNavHistory,pMaxLength);
115 safety=fregularNav.ComputeSafety(localPoint,fNavHistory,pMaxLength);
119 safety = freplicaNav.ComputeSafety(pGlobalpoint, localPoint,
120 fNavHistory, pMaxLength);
123 safety = fpExternalNav->ComputeSafety(localPoint, fNavHistory,
130 fPreviousSftOrigin = pGlobalpoint;
131 fPreviousSafety = safety;
217 G4bool enteredDaughterVol,
220 constexpr G4double reportThreshold= 3.0e-14;
222 constexpr G4double errorThreshold= 1.0e-08;
224 constexpr G4double epsilonLen= 1.0e-20;
227 const G4double oldSafetyPlus = std::fabs(oldSafety)+epsilonLen;
228 if( std::fabs( newValue - oldSafety) > reportThreshold * oldSafetyPlus )
231 std::ostringstream msg;
232 G4double diff= (newValue-oldSafety);
233 G4double relativeDiff= diff / oldSafetyPlus;
235 msg <<
" New (G4SafetyCalculator) value *disagrees* by relative diff " << relativeDiff
236 <<
" in physical volume '" << motherPhysical->
GetName() <<
"' "
237 <<
"copy-no = " << motherPhysical->
GetCopyNo();
238 if( enteredDaughterVol ) { msg <<
" ( Just Entered new daughter volume. ) "; }
239 if( exitedMotherVol ) { msg <<
" ( Just Exited previous volume. ) "; }
241 msg <<
" Safeties: old= " << std::setprecision(12) << oldSafety
242 <<
" trial " << newValue
243 <<
" new-old= " << std::setprecision(7) << diff <<
G4endl;
245 if( std::fabs(diff) < errorThreshold * ( std::fabs(oldSafety)+1.0e-20 ) )
247 msg <<
" (tiny difference) ";
252 msg <<
" (real difference) ";
256 msg <<
" NOTE: keepState = " << keepState <<
G4endl;
257 msg <<
" Location - Global coordinates: " << globalPoint
258 <<
" volume= '" << motherPhysical->
GetName() <<
"'"
260 msg <<
" Argument maxLength= " << maxLength <<
G4endl;
262 std::size_t depth= fNavHistory.GetDepth();
263 msg <<
" Navigation History: depth = " << depth <<
G4endl;
266 msg <<
" d= " << i <<
" " << std::setw(32)
267 << fNavHistory.GetVolume(i)->GetName()
268 <<
" copyNo= " << fNavHistory.GetReplicaNo(i);
273#ifdef G4DEBUG_NAVIGATION
276 msg <<
" Redoing estimator: value = " << std::setprecision(16) << redo
277 <<
" diff/last= " << std::setprecision(7) << redo - newValue
278 <<
" diff/old= " << redo - oldSafety <<
G4endl;
281 G4Exception(
"G4SafetyCalculator::CompareSafetyValues()",
"GeomNav1007",
void CompareSafetyValues(G4double oldSafety, G4double newValue, G4VPhysicalVolume *motherPhysical, const G4ThreeVector &globalPoint, G4bool keepState, G4double maxLength, G4bool enteredVolume, G4bool exitedVolume)