111 G4int no_warnings = 0;
112 static G4int dbg = 1;
113 static G4int nStpPr = 50;
118 G4double y[
G4FieldTrack::ncompSVEC] = {0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.};
119 G4double dydx[
G4FieldTrack::ncompSVEC] = {0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.};
120 G4double ystart[
G4FieldTrack::ncompSVEC] = {0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.};
121 G4double yEnd[
G4FieldTrack::ncompSVEC] = {0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.};
127 const G4int nvar = fNoVars;
137 std::ostringstream message;
138 message <<
"Proposed step is zero; hstep = " << hstep <<
" !";
144 std::ostringstream message;
145 message <<
"Invalid run condition." <<
G4endl
146 <<
"Proposed step is negative; hstep = " << hstep <<
"." <<
G4endl
147 <<
"Requested step cannot be negative! Aborting event.";
156 x1= startCurveLength;
159 if ( (hinitial > 0.0) && (hinitial < hstep)
160 && (hinitial > perMillion * hstep) )
171 for ( i=0; i<nvar; ++i) { y[i] = ystart[i]; }
182 for (i=0; i<nvar; ++i) { ySubStepStart[i] = y[i]; }
187 pIntStepper->RightHandSide( y, dydx );
192 if( h > fMinimumStep )
208 G4double dchord_step, dyerr, dyerr_len;
212 QuickAdvance( yFldTrk, dydx, h, dchord_step, dyerr_len );
219 if ( dyerr_len > fDyerr_max ) { fDyerr_max = dyerr_len; }
220 fDyerrPos_smTot += dyerr_len;
222 if (nstp==1) { ++fNoInitialSmallSteps; }
227 if(fNoSmallSteps<2) {
PrintStatus(ySubStepStart, x1, y, x, h, -nstp); }
228 G4cout <<
"Another sub-min step, no " << fNoSmallSteps
229 <<
" of " << fNoTotalSteps <<
" this time " << nstp <<
G4endl;
231 G4cout <<
" dyerr= " << dyerr_len <<
" relative = " << dyerr_len / h
232 <<
" epsilon= " << eps <<
" hstep= " << hstep
233 <<
" h= " << h <<
" hmin= " << fMinimumStep <<
G4endl;
240 "Integration Step became Zero!");
242 dyerr = dyerr_len / h;
253 if( (dbg>0) && (dbg<=2) && (nstp>nStpPr))
255 if( nstp==nStpPr ) {
G4cout <<
"***** Many steps ****" <<
G4endl; }
257 G4cout <<
"hdid=" << std::setw(12) << hdid <<
" "
258 <<
"hnext=" << std::setw(12) << hnext <<
" "
259 <<
"hstep=" << std::setw(12) << hstep <<
" (requested) "
261 PrintStatus( ystart, x1, y, x, h, (nstp==nStpPr) ? -nstp: nstp);
266 G4double endPointDist= (EndPos-StartPos).mag();
267 if ( endPointDist >= hdid*(1.+perMillion) )
273 if ( endPointDist >= hdid*(1.+perThousand) )
279 G4cerr <<
" Total steps: bad " << fNoBadSteps
280 <<
" current h= " << hdid <<
G4endl;
281 PrintStatus( ystart, x1, y, x, hstep, no_warnings?nstp:-nstp);
289 if( (h < eps * hstep) || (h < fSmallestFraction * startCurveLength) )
297 if(std::fabs(hnext) <=
Hmin())
301 if( (x < x2 * (1-eps) ) &&
302 (std::fabs(hstep) >
Hmin()) )
307 PrintStatus( ystart, x1, y, x, hstep, no_warnings?nstp:-nstp);
333 int prec=
G4cout.precision(12);
334 G4cout <<
"Warning: G4MagIntegratorDriver::AccurateAdvance"
336 <<
" Integration step 'h' became "
337 << h <<
" due to roundoff. " <<
G4endl
338 <<
" Calculated as difference of x2= "<< x2 <<
" and x=" << x
339 <<
" Forcing termination of advance." <<
G4endl;
345 }
while ( ((++nstp)<=fMaxNoSteps) && (x < x2) && (!lastStep) );
353 for (i=0; i<nvar; ++i) { yEnd[i] = y[i]; }
359 if(nstp > fMaxNoSteps)
373 if( dbg && no_warnings )
375 G4cerr <<
"G4MagIntegratorDriver exit status: no-steps " << nstp <<
G4endl;
500 G4double inv_eps_vel_sq = 1.0 / (eps_rel_max*eps_rel_max);
506 const G4int max_trials=100;
510 G4bool hasSpin = (spin_mag2 > 0.0);
512 for (
G4int iter=0; iter<max_trials; ++iter)
514 pIntStepper-> Stepper(y,dydx,h,ytemp,yerr);
516 G4double eps_pos = eps_rel_max * std::max(h, fMinimumStep);
517 G4double inv_eps_pos_sq = 1.0 / (eps_pos*eps_pos);
521 errpos_sq =
sqr(yerr[0]) +
sqr(yerr[1]) +
sqr(yerr[2]) ;
522 errpos_sq *= inv_eps_pos_sq;
527 if( magvel_sq > 0.0 )
529 errvel_sq = sumerr_sq / magvel_sq;
533 std::ostringstream message;
534 message <<
"Found case of zero momentum." <<
G4endl
535 <<
"- iteration= " << iter <<
"; h= " << h;
538 errvel_sq = sumerr_sq;
540 errvel_sq *= inv_eps_vel_sq;
541 errmax_sq = std::max( errpos_sq, errvel_sq );
546 errspin_sq = (
sqr(yerr[9]) +
sqr(yerr[10]) +
sqr(yerr[11]) )
548 errspin_sq *= inv_eps_vel_sq;
549 errmax_sq = std::max( errmax_sq, errspin_sq );
552 if ( errmax_sq <= 1.0 ) {
break; }
557 if (htemp >= 0.1*h) { h = htemp; }
563 std::ostringstream message;
564 message <<
"Stepsize underflow in Stepper !" <<
G4endl
565 <<
"- Step's start x=" << x <<
" and end x= " << xnew
566 <<
" are equal !! " <<
G4endl
567 <<
" Due to step-size= " << h
568 <<
". Note that input step was " << htry;
576 if (errmax_sq > errcon*errcon)
586 for(
G4int k=0; k<fNoIntegrationVariables; ++k) { y[k] = ytemp[k]; }
620 G4double dyerr_pos_sq, dyerr_mom_rel_sq;
624 G4double dyerr_mom_sq, vel_mag_sq, inv_vel_mag_sq;
631 pIntStepper-> Stepper(yarrin, dydx, hstep, yarrout, yerr_vec) ;
634 dchord_step= pIntStepper-> DistChord();
644 PrintStatus( yarrin, s_start, yarrout, s_start+hstep, hstep, 1);
650 vel_mag_sq = (
sqr(yarrout[3])+
sqr(yarrout[4])+
sqr(yarrout[5]) );
651 inv_vel_mag_sq = 1.0 / vel_mag_sq;
652 dyerr_pos_sq = (
sqr(yerr_vec[0])+
sqr(yerr_vec[1])+
sqr(yerr_vec[2]));
653 dyerr_mom_sq = (
sqr(yerr_vec[3])+
sqr(yerr_vec[4])+
sqr(yerr_vec[5]));
654 dyerr_mom_rel_sq = dyerr_mom_sq * inv_vel_mag_sq;
660#ifdef RETURN_A_NEW_STEP_LENGTH
662 dyerr_len = std::sqrt( dyerr_len_sq );
663 dyerr_len_sq /= eps ;
672 if( dyerr_pos_sq > ( dyerr_mom_rel_sq *
sqr(hstep) ) )
674 dyerr = std::sqrt(dyerr_pos_sq);
679 dyerr = std::sqrt(dyerr_mom_rel_sq) * hstep;
884 G4cout << std::setw( 5) << subStepNo <<
" ";
888 G4cout << std::setw( 5) <<
"Start" <<
" ";
891 G4cout << std::setw( 7) << curveLen;
892 G4cout << std::setw( 9) << Position.x() <<
" "
893 << std::setw( 9) << Position.y() <<
" "
894 << std::setw( 9) << Position.z() <<
" "
895 << std::setw( 8) << UnitVelocity.
x() <<
" "
896 << std::setw( 8) << UnitVelocity.
y() <<
" "
897 << std::setw( 8) << UnitVelocity.
z() <<
" ";
899 G4cout << std::setw( 8) << UnitVelocity.
mag2()-1.0 <<
" ";
901 G4cout << std::setw(10) << dotVeloc_StartCurr <<
" ";
902 G4cout.precision(oldprec);
904 G4cout << std::setw(12) << step_len <<
" ";
911 if( curveLen > oldCurveLength )
913 subStep_len= curveLen - oldCurveLength;
915 else if (subStepNo == oldSubStepNo)
917 subStep_len= oldSubStepLength;
919 oldCurveLength= curveLen;
920 oldSubStepLength= subStep_len;
922 G4cout << std::setw(12) << subStep_len <<
" ";
923 G4cout << std::setw(12) << subStepSize <<
" ";
924 if( requestStep != -1.0 )
926 G4cout << std::setw( 9) << requestStep <<
" ";
930 G4cout << std::setw( 9) <<
" InitialStep " <<
" ";