59 if(theParticle->getPotentialEnergy() != 0.){
60 theNucleus->updatePotentialEnergy(theParticle);
64 const ThreeVector &oldMomentum = theParticle->getMomentum();
65 const ThreeVector thePosition = theParticle->getPosition();
69 const ThreeVector newMomentum = oldMomentum - (thePosition * (2.0 * pspr/x2cour));
70 const G4double deltaP2 = (newMomentum-oldMomentum).mag2();
71 theParticle->setMomentum(newMomentum);
72 const G4double minDeltaP2 = sinMinReflectionAngleSquaredOverFour * newMomentum.
mag2();
73 if(deltaP2 < minDeltaP2) {
74 theParticle->setPosition(thePosition * positionScalingFactor);
75 INCL_DEBUG(
"Reflection angle for particle " << theParticle->getID() <<
" was too tangential: " <<
'\n'
76 <<
" " << deltaP2 <<
"=deltaP2<minDeltaP2=" << minDeltaP2 <<
'\n'
77 <<
" Resetting the particle position to ("
78 << thePosition.
getX() <<
", "
79 << thePosition.
getY() <<
", "
80 << thePosition.
getZ() <<
")" <<
'\n');
82 if(theParticle->getPotentialEnergy() != 0.){
83 theNucleus->updatePotentialEnergy(theParticle);
90 theParticle->thawPropagation();