120 G4bool& recalculatedEndPoint,
125 const char* MethodName=
"G4MultiLevelLocator::EstimateIntersectionPoint()";
127 G4bool found_approximate_intersection =
false;
128 G4bool there_is_no_intersection =
false;
130 G4FieldTrack CurrentA_PointVelocity = CurveStartPointVelocity;
131 G4FieldTrack CurrentB_PointVelocity = CurveEndPointVelocity;
133 G4bool validNormalAtE =
false;
136 G4FieldTrack ApproxIntersecPointV(CurveEndPointVelocity);
137 G4bool validIntersectP=
true;
139 G4bool last_AF_intersection =
false;
142 G4bool driverReIntegrates = integrDriver->DoesReIntegrate();
144 G4bool first_section =
true;
145 recalculatedEndPoint =
false;
146 G4bool restoredFullEndpoint =
false;
148 unsigned int substep_no = 0;
154 unsigned int trigger_substepno_print = 0;
155 const G4double tolerance = 1.0e-8 * CLHEP::mm;
156 unsigned int biggest_depth = 0;
163 endChangeB(
"EndPointB"), recApproxPoint(
"ApproxPoint"),
164 pointH_logger(
"Trial points 'E': position, normal");
165 unsigned int eventCount = 0;
172 recApproxPoint.clear();
173 pointH_logger.clear();
178 eventCount, CurrentA_PointVelocity );
180 eventCount, CurrentB_PointVelocity );
193 const G4int param_substeps = 5;
197 G4bool Second_half =
false;
205 unsigned int depth = 0;
213 substep_no, eventCount,
216 #if (G4DEBUG_FIELD>1)
218 if( (TrialPoint - StartPosition).mag2() <
sqr(tolerance))
221 tolerance, fNumCalls);
230 *ptrInterMedFT[0] = CurveEndPointVelocity;
231 for (
auto idepth=1; idepth<max_depth+1; ++idepth )
233 *ptrInterMedFT[idepth] = CurveStartPointVelocity;
238 G4bool fin_section_depth[max_depth];
239 for (
bool & idepth : fin_section_depth)
245 G4FieldTrack SubStart_PointVelocity = CurveStartPointVelocity;
249 unsigned int substep_no_p = 0;
250 G4bool sub_final_section =
false;
252 SubStart_PointVelocity = CurrentA_PointVelocity;
263 G4double distAB = (Point_B - Point_A).mag();
266 G4cerr <<
"ERROR> (Start) Point A coincides with or has gone past (end) point B"
267 <<
"MLL: iters = " << substep_no <<
G4endl;
269 G4cerr <<
" Difference = " << distAB - curv_lenAB
270 <<
" exceeds limit of relative dist (10*epsilon)= " << 10*
fiEpsilonStep
273 G4cerr <<
" Len A, B = " << lenA <<
" " << lenB <<
G4endl
274 <<
" Position A: " << Point_A <<
G4endl
275 <<
" Position B: " << Point_B <<
G4endl;
285 if( !validIntersectP )
288 errmsg <<
"Assertion FAILURE - invalid (stale) Interection point. Substep: "
289 << substep_no <<
" call: " << fNumCalls <<
G4endl;
294 G4Exception(
"G4MultiLevelLocator::EstimateIntersectionPoint",
"GeomNav0004",
304 CurrentB_PointVelocity,
311 substep_no, eventCount, ApproxIntersecPointV ) );
313 G4double checkVsEnd= lenB - lenIntsc;
315 if( lenIntsc > lenB )
317 std::ostringstream errmsg;
318 errmsg.precision(17);
320 G4double ratioTol = std::fabs(ratio) / tolerance;
321 errmsg <<
"Intermediate F point is past end B point" <<
G4endl
322 <<
" l( intersection ) = " << lenIntsc <<
G4endl
323 <<
" l( endpoint ) = " << lenB <<
G4endl;
325 errmsg <<
" l_end - l_inters = " << checkVsEnd <<
G4endl
326 <<
" / l_end = " << ratio <<
G4endl
327 <<
" ratio / tolerance = " << ratioTol <<
G4endl;
340 G4ThreeVector ChordEF_Vector = CurrentF_Point - CurrentE_Point;
343 G4double MomDir_dot_Norm = NewMomentumDir.
dot( NormalAtEntry );
351 MomDir_dot_ABchord = (1.0 / ABchord_length)
352 * NewMomentumDir.
dot( ChordAB );
354 ChordEF_Vector, NewMomentumDir, NormalAtEntry, validNormalAtE );
355 G4cout <<
" dot( MomentumDir, ABchord_unit ) = "
356 << MomDir_dot_ABchord <<
G4endl;
360 ( MomDir_dot_Norm >= 0.0 )
361 || (! validNormalAtE );
366 found_approximate_intersection =
true;
370 IntersectedOrRecalculatedFT = ApproxIntersecPointV;
371 IntersectedOrRecalculatedFT.
SetPosition( CurrentE_Point );
380 CurrentE_Point, CurrentF_Point, MomentumDir,
381 last_AF_intersection, IP, NewSafety,
382 previousSafety, previousSftOrigin );
383 if ( goodCorrection )
385 IntersectedOrRecalculatedFT = ApproxIntersecPointV;
407 G4bool Intersects_FB =
false;
409 NewSafety, previousSafety,
413 last_AF_intersection = Intersects_AF;
418 CurrentB_PointVelocity = ApproxIntersecPointV;
419 CurrentE_Point = PointG;
421 validIntersectP =
true;
425 validNormalAtE = validNormalLast;
429 fin_section_depth[depth] =
false;
434 endChangeB.push_back(
436 substep_no, eventCount, CurrentB_PointVelocity) );
441 G4cout <<
"G4PiF::LI> Investigating intermediate point"
443 <<
" on way to full s="
463 NewSafety, previousSafety,
481 CurrentA_PointVelocity = ApproxIntersecPointV;
482 CurrentE_Point = PointH;
484 validIntersectP =
true;
488 validNormalAtE = validNormalH;
493 endChangeA.push_back(
495 substep_no, eventCount, CurrentA_PointVelocity) );
501 substep_no, eventCount, intersectH_pn );
506 validIntersectP =
false;
507 if( fin_section_depth[depth] )
517 if( ((Second_half)&&(depth==0)) || (first_section) )
519 there_is_no_intersection =
true;
525 substep_no_p = param_substeps+2;
530 sub_final_section =
true;
535 CurrentA_PointVelocity = CurrentB_PointVelocity;
536 CurrentB_PointVelocity = (depth==0) ? CurveEndPointVelocity
537 : *ptrInterMedFT[depth] ;
538 SubStart_PointVelocity = CurrentA_PointVelocity;
539 restoredFullEndpoint =
true;
541 validIntersectP =
false;
546 endChangeA.push_back(
549 substep_no, eventCount, CurrentA_PointVelocity) );
550 endChangeB.push_back(
553 substep_no, eventCount, CurrentB_PointVelocity) );
559 G4int errorEndPt = 0;
561 G4bool recalculatedB=
false;
562 if( driverReIntegrates )
566 CurrentB_PointVelocity,
571 CurrentB_PointVelocity = RevisedB_FT;
578 if ( (fin_section_depth[depth])
579 &&( first_section || ((Second_half)&&(depth==0)) ) )
581 recalculatedEndPoint =
true;
582 IntersectedOrRecalculatedFT = RevisedB_FT;
594 endChangeB.push_back(
596 substep_no, eventCount, RevisedB_FT ) );
610 std::ostringstream errmsg;
613 CurveStartPointVelocity, CurveEndPointVelocity,
615 CurrentA_PointVelocity, CurrentB_PointVelocity,
616 SubStart_PointVelocity, CurrentE_Point,
617 ApproxIntersecPointV, substep_no, substep_no_p, depth);
624 errmsg <<
G4endl <<
" * Location: " << MethodName
625 <<
"- After EndIf(Intersects_AF)" <<
G4endl;
626 errmsg <<
" * Bool flags: Recalculated = " << recalculatedB
627 <<
" Intersects_AF = " << Intersects_AF
628 <<
" Intersects_FB = " << Intersects_FB <<
G4endl;
629 errmsg <<
" * Number of calls to MLL:EIP= " << fNumCalls <<
G4endl;
632 if( restoredFullEndpoint )
634 fin_section_depth[depth] = restoredFullEndpoint;
635 restoredFullEndpoint =
false;
641 if( trigger_substepno_print == 0)
643 trigger_substepno_print= fWarnSteps - 20;
646 if( substep_no >= trigger_substepno_print )
648 G4cout <<
"Difficulty in converging in " << MethodName
649 <<
" Substep no = " << substep_no <<
G4endl;
650 if( substep_no == trigger_substepno_print )
653 printStatus( CurveStartPointVelocity, CurveEndPointVelocity,
654 -1.0, NewSafety, 0 );
658 G4cout <<
" ** For more information enable 'check mode' in G4MultiLevelLocator "
659 <<
"-- (it saves and can output change records) " <<
G4endl;
663 printStatus( CurrentA_PointVelocity, CurrentA_PointVelocity,
664 -1.0, NewSafety, substep_no-1 );
666 printStatus( CurrentA_PointVelocity, CurrentB_PointVelocity,
667 -1.0, NewSafety, substep_no );
673 }
while ( ( ! found_approximate_intersection )
674 && ( ! there_is_no_intersection )
676 && ( substep_no_p <= param_substeps) );
679 if( (!found_approximate_intersection) && (!there_is_no_intersection) )
691 if( (did_len < fraction_done*all_len)
692 && (depth<max_depth) && (!sub_final_section) )
696 biggest_depth = std::max(depth, biggest_depth);
701 first_section =
false;
703 G4double Sub_len = (all_len-did_len)/(2.);
706 integrDriver->AccurateAdvance(midPoint, Sub_len,
fiEpsilonStep);
709 if( fullAdvance ) { ++fNumAdvanceFull; }
714 const G4double adequateFraction = (1.0-CLHEP::perThousand);
715 G4bool goodAdvance = (lenAchieved >= adequateFraction * Sub_len);
716 if ( goodAdvance ) { ++fNumAdvanceGood; }
721 G4cout <<
"MLL> AdvanceChordLimited not full at depth=" << depth
722 <<
" total length achieved = " << lenAchieved <<
" of "
723 << Sub_len <<
" fraction= ";
724 if (Sub_len != 0.0 ) {
G4cout << lenAchieved / Sub_len; }
725 else {
G4cout <<
"DivByZero"; }
726 G4cout <<
" Good-enough fraction = " << adequateFraction;
727 G4cout <<
" Number of call to mll = " << fNumCalls
728 <<
" iteration " << substep_no
729 <<
" inner = " << substep_no_p <<
G4endl;
731 G4cout <<
" State at start is = " << CurrentA_PointVelocity
733 <<
" at end (midpoint)= " << midPoint <<
G4endl;
737 ReportFieldValue( CurrentA_PointVelocity,
"start", equation );
738 ReportFieldValue( midPoint,
"midPoint", equation );
739 G4cout <<
" Original Start = "
740 << CurveStartPointVelocity <<
G4endl;
741 G4cout <<
" Original End = "
742 << CurveEndPointVelocity <<
G4endl;
743 G4cout <<
" Original TrialPoint = "
745 G4cout <<
" (this is STRICT mode) "
746 <<
" num Splits= " << numSplits;
751 *ptrInterMedFT[depth] = midPoint;
752 CurrentB_PointVelocity = midPoint;
757 endChangeB.push_back(
759 substep_no, eventCount, midPoint) );
764 SubStart_PointVelocity = CurrentA_PointVelocity;
774 NewSafety, previousSafety,
775 previousSftOrigin, distAB,
779 last_AF_intersection = Intersects_AB;
780 CurrentE_Point = PointGe;
781 fin_section_depth[depth] =
true;
783 validIntersectP =
true;
787 validNormalAtE = validNormalAB;
796 validIntersectP=
false;
800 G4bool unfinished = Second_half;
801 while ( unfinished && (depth>0) )
808 SubStart_PointVelocity = *ptrInterMedFT[depth];
809 CurrentA_PointVelocity = *ptrInterMedFT[depth];
810 CurrentB_PointVelocity = *ptrInterMedFT[depth-1];
816 substep_no, eventCount, CurrentA_PointVelocity);
817 endChangeA.push_back( chngPop_a );
819 substep_no, eventCount, CurrentB_PointVelocity);
820 endChangeB.push_back( chngPop_b );
826 G4int errorEndPt = -1;
827 G4bool recalculatedB=
false;
828 if( driverReIntegrates )
833 G4FieldTrack RevisedEndPointFT = CurrentB_PointVelocity;
836 CurrentB_PointVelocity,
841 CurrentB_PointVelocity = RevisedEndPointFT;
845 recalculatedEndPoint =
true;
846 IntersectedOrRecalculatedFT = RevisedEndPointFT;
862 endChangeB.push_back(
864 substep_no, eventCount, RevisedEndPointFT));
869 std::ostringstream errmsg;
871 CurveStartPointVelocity, CurveEndPointVelocity,
873 CurrentA_PointVelocity, CurrentB_PointVelocity,
874 SubStart_PointVelocity, CurrentE_Point,
875 ApproxIntersecPointV, substep_no, substep_no_p, depth);
876 errmsg <<
" * Location: " << MethodName <<
"- Second-Half" <<
G4endl;
877 errmsg <<
" * Recalculated = " << recalculatedB <<
G4endl;
887 previousSftOrigin, distAB,
891 last_AF_intersection = Intersects_AB;
892 CurrentE_Point = PointGi;
894 validIntersectP =
true;
899 validIntersectP =
false;
902 there_is_no_intersection =
true;
906 fin_section_depth[depth] =
true;
907 unfinished = !validIntersectP;
910 if( ! ( validIntersectP || there_is_no_intersection ) )
913 G4cout <<
"MLL - WARNING Potential FAILURE: Conditions not met!"
915 <<
" Depth = " << depth <<
G4endl
916 <<
" Num Substeps= " << substep_no <<
G4endl;
917 G4cout <<
" Found intersection= " << found_approximate_intersection
921 CurveStartPointVelocity, CurveEndPointVelocity,
922 substep_no, CurrentA_PointVelocity,
923 CurrentB_PointVelocity,
930 assert( validIntersectP || there_is_no_intersection
931 || found_approximate_intersection);
933 }
while ( ( ! found_approximate_intersection )
934 && ( ! there_is_no_intersection )
935 && ( substep_no <= fMaxSteps) );
937 if( substep_no > max_no_seen )
939 max_no_seen = substep_no;
941 if( max_no_seen > fWarnSteps )
943 trigger_substepno_print = max_no_seen-20;
948 if( !there_is_no_intersection && !found_approximate_intersection )
950 if( substep_no >= fMaxSteps)
954 recalculatedEndPoint =
true;
955 IntersectedOrRecalculatedFT = CurrentA_PointVelocity;
956 found_approximate_intersection =
false;
958 std::ostringstream message;
960 message <<
"Convergence is requiring too many substeps: "
961 << substep_no <<
" ( limit = "<< fMaxSteps <<
")"
963 <<
" Abandoning effort to intersect. " <<
G4endl <<
G4endl;
964 message <<
" Number of calls to MLL: " << fNumCalls;
965 message <<
" iteration = " << substep_no <<
G4endl <<
G4endl;
967 message.precision( 12 );
970 message <<
" Undertaken only length: " << done_len
971 <<
" out of " << full_len <<
" required." <<
G4endl
972 <<
" Remaining length = " << full_len - done_len;
974 message <<
" Start and end-point of requested Step:" <<
G4endl;
975 printStatus( CurveStartPointVelocity, CurveEndPointVelocity,
976 -1.0, NewSafety, 0, message, -1 );
977 message <<
" Start and end-point of current Sub-Step:" <<
G4endl;
978 printStatus( CurrentA_PointVelocity, CurrentA_PointVelocity,
979 -1.0, NewSafety, substep_no-1, message, -1 );
980 printStatus( CurrentA_PointVelocity, CurrentB_PointVelocity,
981 -1.0, NewSafety, substep_no, message, -1 );
985 else if( substep_no >= fWarnSteps)
987 std::ostringstream message;
988 message <<
"Many substeps while trying to locate intersection."
990 <<
" Undertaken length: "
992 <<
" - Needed: " << substep_no <<
" substeps." <<
G4endl
993 <<
" Warning number = " << fWarnSteps
994 <<
" and maximum substeps = " << fMaxSteps;
999 return (!there_is_no_intersection) && found_approximate_intersection;