81 theOuterRadius(0), theNucleus(0),
82 theFieldMap(0), theEquationMap(0),
115 theFieldMap =
new std::map <G4int, G4VNuclearField*, std::less<G4int> >;
130 theEquationMap =
new std::map <G4int, G4Mag_EqRhs*, std::less<G4int> >;
233 std::vector<G4KineticTrack *>::iterator i;
234 for(i = active.begin(); i != active.end(); ++i)
240 std::map <G4int, G4VNuclearField*, std::less<G4int> >::iterator fieldIter=
theFieldMap->find(encoding);
243 if ( fieldIter !=
theFieldMap->end() ) currentField=fieldIter->second;
260 #ifdef debug_1_RKPropagation
261 G4cout <<
" kt,timeStep, Intersection times tenter, tleave "
262 <<kt<<
" / state= " <<kt->
GetState() <<
" / " <<
" "<< currTimeStep <<
" / " << t_enter <<
" / " << t_leave <<
G4endl;
277 if(currTimeStep ==
DBL_MAX)currTimeStep = t_leave*1.05;
279 if ( currTimeStep >= t_leave )
294 if(t_enter > currTimeStep)
302 currTimeStep -= t_enter;
309 if(newE <= kt->GetActualMass())
347 if(currTimeStep > t_leave)
349 currTimeStep = t_leave;
353 #ifdef debug_1_RKPropagation
354 G4cerr <<
"RKPropagation is_exiting?, t_leave, curTimeStep " <<is_exiting<<
" "<<t_leave <<
" " <<currTimeStep<<
G4endl;
355 G4cout <<
"RKPropagation Ekin, field, projectile potential, p "
368 if (currTimeStep > 0 &&
373 #ifdef debug_1_RKPropagation
374 G4cout <<
"RKPropagation Ekin, field, p "
394 if(t_in < 0 && t_out >= 0)
413 newE += currentField->
GetField(savePos)
419 if(newE < kt->GetActualMass())
421 #ifdef debug_1_RKPropagation
422 G4cout <<
"RKPropagation-Transport: problem with particle exiting - ignored" <<
G4endl;
443 if(newE < kt->GetActualMass())
445 #ifdef debug_1_RKPropagation
506 #ifdef debug_1_RKPropagation
507 std::cerr <<
"G4RKPropagation::FieldTransport() warning: integration error."
509 <<
G4endl <<
" timestep " <<timeStep
593 G4double sqrtArg = scalarProd*scalarProd -
600 t1 = (-scalarProd - std::sqrt(sqrtArg))/speedMag2/
c_light;
601 t2 = (-scalarProd + std::sqrt(sqrtArg))/speedMag2/
c_light;
613 G4double sqrtArg = scalarProd*scalarProd -
619 t1 = (-scalarProd - std::sqrt(sqrtArg))/speedMag2/
c_light;
620 t2 = (-scalarProd + std::sqrt(sqrtArg))/speedMag2/
c_light;
633 std::map <G4int, G4VNuclearField *, std::less<G4int> >::iterator cur;
634 for(cur = aMap->begin(); cur != aMap->end(); ++cur)
635 delete (*cur).second;
650 std::map <G4int, G4Mag_EqRhs *, std::less<G4int> >::iterator cur;
651 for(cur = aMap->begin(); cur != aMap->end(); ++cur)
652 delete (*cur).second;