123{
124
125 const char* MethodName= "G4MultiLevelLocator::EstimateIntersectionPoint()";
126
127 G4bool found_approximate_intersection =
false;
128 G4bool there_is_no_intersection =
false;
129
130 G4FieldTrack CurrentA_PointVelocity = CurveStartPointVelocity;
131 G4FieldTrack CurrentB_PointVelocity = CurveEndPointVelocity;
133 G4bool validNormalAtE =
false;
135
136 G4FieldTrack ApproxIntersecPointV(CurveEndPointVelocity);
137 G4bool validIntersectP=
true;
139 G4bool last_AF_intersection =
false;
140
143
144 G4bool first_section =
true;
145 recalculatedEndPoint = false;
146 G4bool restoredFullEndpoint =
false;
147
148 unsigned int substep_no = 0;
149
150
152
153#ifdef G4DEBUG_FIELD
154 unsigned int trigger_substepno_print = 0;
155 const G4double tolerance = 1.0e-8 * CLHEP::mm;
156 unsigned int biggest_depth = 0;
157
158#endif
159
160
161
162 static G4ThreadLocal G4LocatorChangeLogger endChangeA(
"StartPointA"),
163 endChangeB("EndPointB"), recApproxPoint("ApproxPoint"),
164 pointH_logger("Trial points 'E': position, normal");
165 unsigned int eventCount = 0;
166
168 {
169
170 endChangeA.clear();
171 endChangeB.clear();
172 recApproxPoint.clear();
173 pointH_logger.clear();
174
175
176 ++eventCount;
178 eventCount, CurrentA_PointVelocity );
180 eventCount, CurrentB_PointVelocity );
181 }
182
183
184
185
186
187
188
189
190
191
192
193 const G4int param_substeps = 5;
194
196
197 G4bool Second_half =
false;
198
199
200
201
202
203
204
205 unsigned int depth = 0;
206 ++fNumCalls;
207
209
211 {
213 substep_no, eventCount,
214 G4FieldTrack( CurrentE_Point,0.,NormalAtEntry,0.,
216 #if (G4DEBUG_FIELD>1)
217 G4ThreeVector StartPosition = CurveStartPointVelocity.GetPosition();
218 if( (TrialPoint - StartPosition).mag2() <
sqr(tolerance))
219 {
221 tolerance, fNumCalls);
222 }
223 #endif
224 }
225
226
227
228
229
230 *ptrInterMedFT[0] = CurveEndPointVelocity;
231 for ( auto idepth=1; idepth<max_depth+1; ++idepth )
232 {
233 *ptrInterMedFT[idepth] = CurveStartPointVelocity;
234 }
235
236
237
238 G4bool fin_section_depth[max_depth];
239 for (bool & idepth : fin_section_depth)
240 {
241 idepth = true;
242 }
243
244
245 G4FieldTrack SubStart_PointVelocity = CurveStartPointVelocity;
246
247 do
248 {
249 unsigned int substep_no_p = 0;
250 G4bool sub_final_section =
false;
251
252 SubStart_PointVelocity = CurrentA_PointVelocity;
253
254 do
255 {
258
259#ifdef G4DEBUG_FIELD
263 G4double distAB = (Point_B - Point_A).mag();
265 {
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;
277
278
280 {
282 }
283 }
284
285 if( !validIntersectP )
286 {
288 errmsg << "Assertion FAILURE - invalid (stale) Interection point. Substep: "
289 << substep_no <<
" call: " << fNumCalls <<
G4endl;
291 {
293 }
294 G4Exception(
"G4MultiLevelLocator::EstimateIntersectionPoint",
"GeomNav0004",
296 }
297#endif
298
299
300
301
304 CurrentB_PointVelocity,
305 CurrentE_Point,
307
308
309#ifdef G4DEBUG_FIELD
311 substep_no, eventCount, ApproxIntersecPointV ) );
313 G4double checkVsEnd= lenB - lenIntsc;
314
315 if( lenIntsc > lenB )
316 {
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;
324 errmsg.precision(8);
325 errmsg <<
" l_end - l_inters = " << checkVsEnd <<
G4endl
326 <<
" / l_end = " << ratio <<
G4endl
327 <<
" ratio / tolerance = " << ratioTol <<
G4endl;
328 if( ratioTol < 1.0 )
330 else
332 }
333#endif
334
335 G4ThreeVector CurrentF_Point= ApproxIntersecPointV.GetPosition();
336
337
338
339
340 G4ThreeVector ChordEF_Vector = CurrentF_Point - CurrentE_Point;
341
342 G4ThreeVector NewMomentumDir = ApproxIntersecPointV.GetMomentumDir();
343 G4double MomDir_dot_Norm = NewMomentumDir.
dot( NormalAtEntry );
344
345#ifdef G4DEBUG_FIELD
347 {
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;
357 }
358#endif
360 ( MomDir_dot_Norm >= 0.0 )
361 || (! validNormalAtE );
365 {
366 found_approximate_intersection = true;
367
368
369
370 IntersectedOrRecalculatedFT = ApproxIntersecPointV;
371 IntersectedOrRecalculatedFT.SetPosition( CurrentE_Point );
372
374 {
375
376
378 G4ThreeVector MomentumDir=ApproxIntersecPointV.GetMomentumDirection();
380 CurrentE_Point, CurrentF_Point, MomentumDir,
381 last_AF_intersection, IP, NewSafety,
382 previousSafety, previousSftOrigin );
383 if ( goodCorrection )
384 {
385 IntersectedOrRecalculatedFT = ApproxIntersecPointV;
386 IntersectedOrRecalculatedFT.SetPosition(IP);
387 }
388 }
389
390
391
392
393
394
395 }
396 else
397 {
398
399
400
401
402
404
407 G4bool Intersects_FB =
false;
409 NewSafety, previousSafety,
410 previousSftOrigin,
411 stepLengthAF,
412 PointG );
413 last_AF_intersection = Intersects_AF;
414 if( Intersects_AF )
415 {
416
417
418 CurrentB_PointVelocity = ApproxIntersecPointV;
419 CurrentE_Point = PointG;
420
421 validIntersectP = true;
422
425 validNormalAtE = validNormalLast;
426
427
428
429 fin_section_depth[depth] = false;
430
432 {
433 ++eventCount;
434 endChangeB.push_back(
436 substep_no, eventCount, CurrentB_PointVelocity) );
437 }
438#ifdef G4VERBOSE
440 {
441 G4cout <<
"G4PiF::LI> Investigating intermediate point"
442 << " at s=" << ApproxIntersecPointV.GetCurveLength()
443 << " on way to full s="
444 << CurveEndPointVelocity.GetCurveLength() <<
G4endl;
445 }
446#endif
447 }
448 else
449 {
450
451
452
453
455
458
459
460
461
463 NewSafety, previousSafety,
464 previousSftOrigin,
465 stepLengthFB,
466 PointH );
467 if( Intersects_FB )
468 {
469
470
471
472
473
474
475
476
477
478
479
480
481 CurrentA_PointVelocity = ApproxIntersecPointV;
482 CurrentE_Point = PointH;
483
484 validIntersectP = true;
485
488 validNormalAtE = validNormalH;
489
491 {
492 ++eventCount;
493 endChangeA.push_back(
495 substep_no, eventCount, CurrentA_PointVelocity) );
496 G4FieldTrack intersectH_pn('0');
497
498 intersectH_pn.SetPosition( PointH );
499 intersectH_pn.SetMomentum( NormalAtEntry );
501 substep_no, eventCount, intersectH_pn );
502 }
503 }
504 else
505 {
506 validIntersectP = false;
507 if( fin_section_depth[depth] )
508 {
509
510
511
512
513
514
515
516
517 if( ((Second_half)&&(depth==0)) || (first_section) )
518 {
519 there_is_no_intersection = true;
520 }
521 else
522 {
523
524
525 substep_no_p = param_substeps+2;
526
527
528
529 Second_half = true;
530 sub_final_section = true;
531 }
532 }
533 else
534 {
535 CurrentA_PointVelocity = CurrentB_PointVelocity;
536 CurrentB_PointVelocity = (depth==0) ? CurveEndPointVelocity
537 : *ptrInterMedFT[depth] ;
538 SubStart_PointVelocity = CurrentA_PointVelocity;
539 restoredFullEndpoint = true;
540
541 validIntersectP = false;
542
544 {
545 ++eventCount;
546 endChangeA.push_back(
547 G4LocatorChangeRecord(
549 substep_no, eventCount, CurrentA_PointVelocity) );
550 endChangeB.push_back(
551 G4LocatorChangeRecord (
553 substep_no, eventCount, CurrentB_PointVelocity) );
554 }
555 }
556 }
557 }
558
559 G4int errorEndPt = 0;
560
561 G4bool recalculatedB=
false;
562 if( driverReIntegrates )
563 {
564 G4FieldTrack RevisedB_FT = CurrentB_PointVelocity;
566 CurrentB_PointVelocity,
567 RevisedB_FT,
568 errorEndPt );
569 if( recalculatedB )
570 {
571 CurrentB_PointVelocity = RevisedB_FT;
572
573
574
575
576
577
578 if ( (fin_section_depth[depth])
579 &&( first_section || ((Second_half)&&(depth==0)) ) )
580 {
581 recalculatedEndPoint = true;
582 IntersectedOrRecalculatedFT = RevisedB_FT;
583
584 }
585
586
587
588
589
590 }
592 {
593 ++eventCount;
594 endChangeB.push_back(
596 substep_no, eventCount, RevisedB_FT ) );
597 }
598 }
599 else
600 {
603 {
604 errorEndPt = 2;
605 }
606 }
607
608 if( errorEndPt > 1 )
609 {
610 std::ostringstream errmsg;
611
613 CurveStartPointVelocity, CurveEndPointVelocity,
615 CurrentA_PointVelocity, CurrentB_PointVelocity,
616 SubStart_PointVelocity, CurrentE_Point,
617 ApproxIntersecPointV, substep_no, substep_no_p, depth);
618
620 {
622 }
623
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;
631 }
632 if( restoredFullEndpoint )
633 {
634 fin_section_depth[depth] = restoredFullEndpoint;
635 restoredFullEndpoint = false;
636 }
637 }
638
639
640#ifdef G4DEBUG_FIELD
641 if( trigger_substepno_print == 0)
642 {
643 trigger_substepno_print= fWarnSteps - 20;
644 }
645
646 if( substep_no >= trigger_substepno_print )
647 {
648 G4cout <<
"Difficulty in converging in " << MethodName
649 <<
" Substep no = " << substep_no <<
G4endl;
650 if( substep_no == trigger_substepno_print )
651 {
653 printStatus( CurveStartPointVelocity, CurveEndPointVelocity,
654 -1.0, NewSafety, 0 );
657 } else {
658 G4cout <<
" ** For more information enable 'check mode' in G4MultiLevelLocator "
659 <<
"-- (it saves and can output change records) " <<
G4endl;
660 }
661 }
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 );
668 }
669#endif
670 ++substep_no;
671 ++substep_no_p;
672
673 } while ( ( ! found_approximate_intersection )
674 && ( ! there_is_no_intersection )
675 && validIntersectP
676 && ( substep_no_p <= param_substeps) );
677
678
679 if( (!found_approximate_intersection) && (!there_is_no_intersection) )
680 {
685
687
688
689
690
691 if( (did_len < fraction_done*all_len)
692 && (depth<max_depth) && (!sub_final_section) )
693 {
694#ifdef G4DEBUG_FIELD
696 biggest_depth = std::max(depth, biggest_depth);
697 ++numSplits;
698#endif
699 Second_half = false;
700 ++depth;
701 first_section = false;
702
703 G4double Sub_len = (all_len-did_len)/(2.);
704 G4FieldTrack midPoint = CurrentA_PointVelocity;
706 integrDriver->AccurateAdvance(midPoint, Sub_len,
fiEpsilonStep);
707
708 ++fNumAdvanceTrials;
709 if( fullAdvance ) { ++fNumAdvanceFull; }
710
713
714 const G4double adequateFraction = (1.0-CLHEP::perThousand);
715 G4bool goodAdvance = (lenAchieved >= adequateFraction * Sub_len);
716 if ( goodAdvance ) { ++fNumAdvanceGood; }
717
718#ifdef G4DEBUG_FIELD
719 else
720 {
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;
735
736 G4EquationOfMotion *equation = integrDriver->GetEquationOfMotion();
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;
748 }
749#endif
750
751 *ptrInterMedFT[depth] = midPoint;
752 CurrentB_PointVelocity = midPoint;
753
755 {
756 ++eventCount;
757 endChangeB.push_back(
759 substep_no, eventCount, midPoint) );
760 }
761
762
763
764 SubStart_PointVelocity = CurrentA_PointVelocity;
765
766
767
770
774 NewSafety, previousSafety,
775 previousSftOrigin, distAB,
776 PointGe);
777 if( Intersects_AB )
778 {
779 last_AF_intersection = Intersects_AB;
780 CurrentE_Point = PointGe;
781 fin_section_depth[depth] = true;
782
783 validIntersectP = true;
784
787 validNormalAtE = validNormalAB;
788 }
789 else
790 {
791
792
793
794 Second_half = true;
795
796 validIntersectP= false;
797 }
798 }
799
800 G4bool unfinished = Second_half;
801 while ( unfinished && (depth>0) )
802 {
803
804
805
806
807
808 SubStart_PointVelocity = *ptrInterMedFT[depth];
809 CurrentA_PointVelocity = *ptrInterMedFT[depth];
810 CurrentB_PointVelocity = *ptrInterMedFT[depth-1];
811
813 {
814 ++eventCount;
816 substep_no, eventCount, CurrentA_PointVelocity);
817 endChangeA.push_back( chngPop_a );
819 substep_no, eventCount, CurrentB_PointVelocity);
820 endChangeB.push_back( chngPop_b );
821 }
822
823
824
825
826 G4int errorEndPt = -1;
827 G4bool recalculatedB=
false;
828 if( driverReIntegrates )
829 {
830
831
832
833 G4FieldTrack RevisedEndPointFT = CurrentB_PointVelocity;
834 recalculatedB =
836 CurrentB_PointVelocity,
837 RevisedEndPointFT,
838 errorEndPt );
839 if( recalculatedB )
840 {
841 CurrentB_PointVelocity = RevisedEndPointFT;
842
843 if ( depth == 1 )
844 {
845 recalculatedEndPoint = true;
846 IntersectedOrRecalculatedFT = RevisedEndPointFT;
847
848 }
849 }
850 else
851 {
854 {
855 errorEndPt = 2;
856 }
857 }
858
860 {
861 ++eventCount;
862 endChangeB.push_back(
864 substep_no, eventCount, RevisedEndPointFT));
865 }
866 }
867 if( errorEndPt > 1 )
868 {
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;
879 }
880
886 previousSafety,
887 previousSftOrigin, distAB,
888 PointGi);
889 if( Intersects_AB )
890 {
891 last_AF_intersection = Intersects_AB;
892 CurrentE_Point = PointGi;
893
894 validIntersectP = true;
896 }
897 else
898 {
899 validIntersectP = false;
900 if( depth == 1)
901 {
902 there_is_no_intersection = true;
903 }
904 }
905 depth--;
906 fin_section_depth[depth] = true;
907 unfinished = !validIntersectP;
908 }
909#ifdef G4DEBUG_FIELD
910 if( ! ( validIntersectP || there_is_no_intersection ) )
911 {
912
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,
924 NewSafety, depth );
926 }
927#endif
928 }
929
930 assert( validIntersectP || there_is_no_intersection
931 || found_approximate_intersection);
932
933 } while ( ( ! found_approximate_intersection )
934 && ( ! there_is_no_intersection )
935 && ( substep_no <= fMaxSteps) );
936
937 if( substep_no > max_no_seen )
938 {
939 max_no_seen = substep_no;
940#ifdef G4DEBUG_FIELD
941 if( max_no_seen > fWarnSteps )
942 {
943 trigger_substepno_print = max_no_seen-20;
944 }
945#endif
946 }
947
948 if( !there_is_no_intersection && !found_approximate_intersection )
949 {
950 if( substep_no >= fMaxSteps)
951 {
952
953
954 recalculatedEndPoint = true;
955 IntersectedOrRecalculatedFT = CurrentA_PointVelocity;
956 found_approximate_intersection = false;
957
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;
966
967 message.precision( 12 );
969 G4double full_len = CurveEndPointVelocity.GetCurveLength();
970 message << " Undertaken only length: " << done_len
971 <<
" out of " << full_len <<
" required." <<
G4endl
972 << " Remaining length = " << full_len - done_len;
973
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 );
982
984 }
985 else if( substep_no >= fWarnSteps)
986 {
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;
996 }
997 }
998
999 return (!there_is_no_intersection) && found_approximate_intersection;
1000
1001}
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
G4FieldTrack ApproxCurvePointV(const G4FieldTrack &curveAPointVelocity, const G4FieldTrack &curveBPointVelocity, const G4ThreeVector ¤tEPoint, G4double epsStep)
G4VIntegrationDriver * GetIntegrationDriver()
G4double GetCurveLength() const
G4ThreeVector GetPosition() const
G4double GetRestMass() const
static std::ostream & ReportEndChanges(std::ostream &os, const G4LocatorChangeLogger &startA, const G4LocatorChangeLogger &endB)
static std::ostream & ReportEndChanges(std::ostream &os, const std::vector< G4LocatorChangeRecord > &startA, const std::vector< G4LocatorChangeRecord > &endB)
virtual void LocateGlobalPointWithinVolume(const G4ThreeVector &position)
virtual G4bool DoesReIntegrate() const =0
G4double fiDeltaIntersection
G4Navigator * GetNavigatorFor()
G4ChordFinder * GetChordFinderFor()
G4ThreeVector GetSurfaceNormal(const G4ThreeVector &CurrentInt_Point, G4bool &validNormal)
void ReportTrialStep(G4int step_no, const G4ThreeVector &ChordAB_v, const G4ThreeVector &ChordEF_v, const G4ThreeVector &NewMomentumDir, const G4ThreeVector &NormalAtEntry, G4bool validNormal)
G4bool IntersectChord(const G4ThreeVector &StartPointA, const G4ThreeVector &EndPointB, G4double &NewSafety, G4double &PreviousSafety, G4ThreeVector &PreviousSftOrigin, G4double &LinearStepLength, G4ThreeVector &IntersectionPoint, G4bool *calledNavigator=nullptr)
G4bool CheckAndReEstimateEndpoint(const G4FieldTrack &CurrentStartA, const G4FieldTrack &EstimatedEndB, G4FieldTrack &RevisedEndPoint, G4int &errorCode)
void ReportProgress(std::ostream &oss, const G4FieldTrack &StartPointVel, const G4FieldTrack &EndPointVel, G4int substep_no, const G4FieldTrack &A_PtVel, const G4FieldTrack &B_PtVel, G4double safetyLast, G4int depth=-1)
G4double GetEpsilonStepFor()
void ReportImmediateHit(const char *MethodName, const G4ThreeVector &StartPosition, const G4ThreeVector &TrialPoint, G4double tolerance, unsigned long int numCalls)
G4bool GetAdjustementOfFoundIntersection()
void printStatus(const G4FieldTrack &startFT, const G4FieldTrack ¤tFT, G4double requestStep, G4double safety, G4int stepNum)
G4bool AdjustmentOfFoundIntersection(const G4ThreeVector &A, const G4ThreeVector &CurrentE_Point, const G4ThreeVector &CurrentF_Point, const G4ThreeVector &MomentumDir, const G4bool IntersectAF, G4ThreeVector &IntersectionPoint, G4double &NewSafety, G4double &fPrevSafety, G4ThreeVector &fPrevSftOrigin)
void ReportReversedPoints(std::ostringstream &ossMsg, const G4FieldTrack &StartPointVel, const G4FieldTrack &EndPointVel, G4double NewSafety, G4double epsStep, const G4FieldTrack &CurrentA_PointVelocity, const G4FieldTrack &CurrentB_PointVelocity, const G4FieldTrack &SubStart_PointVelocity, const G4ThreeVector &CurrentE_Point, const G4FieldTrack &ApproxIntersecPointV, G4int sbstp_no, G4int sbstp_no_p, G4int depth)