78 if(theParticle->isTargetSpectator()) {
79 INCL_DEBUG(
"Particle " << theParticle->getID() <<
" is a spectator, reflection" <<
'\n');
86 if(theParticle->isResonance()) {
87 const G4double theFermiEnergy = theNucleus->getPotential()->getFermiEnergy(theParticle);
88 if(theParticle->getKineticEnergy()<theFermiEnergy) {
89 INCL_DEBUG(
"Particle " << theParticle->getID() <<
" is a resonance below Tf, reflection" <<
'\n'
90 <<
" Tf=" << theFermiEnergy <<
", EKin=" << theParticle->getKineticEnergy() <<
'\n');
99 const G4double cosR = cosRefractionAngle;
101 INCL_DEBUG(
"Transmission probability for particle " << theParticle->getID() <<
" = " << transmissionProbability <<
'\n');
110 if(theParticle->isNucleonorLambda()
111 && (!theParticle->isProjectileSpectator() || !theNucleus->isNucleusNucleusCollision())
112 && transmissionProbability>1.E-4) {
116 if(candidateCluster != 0 &&
119 INCL_DEBUG(
"Cluster algorithm succeeded. Candidate cluster:" <<
'\n' << candidateCluster->
print() <<
'\n');
125 INCL_DEBUG(
"Transmission probability for cluster " << candidateCluster->
getID() <<
" = " << clusterTransmissionProbability <<
'\n');
127 if (x <= clusterTransmissionProbability) {
128 theNucleus->getStore()->getBook().incrementEmittedClusters();
129 INCL_DEBUG(
"Cluster " << candidateCluster->
getID() <<
" passes the Coulomb barrier, transmitting." <<
'\n');
132 INCL_DEBUG(
"Cluster " << candidateCluster->
getID() <<
" does not pass the Coulomb barrier. Falling back to transmission of the leading particle." <<
'\n');
133 delete candidateCluster;
136 delete candidateCluster;
145 if(theParticle->isProjectileSpectator() && transmissionProbability>0.) {
146 INCL_DEBUG(
"Particle " << theParticle->getID() <<
" is a projectile spectator, transmission" <<
'\n');
153 if(x <= transmissionProbability) {
154 INCL_DEBUG(
"Particle " << theParticle->getID() <<
" passes the Coulomb barrier, transmitting." <<
'\n');
155 if(theParticle->isKaon()) theNucleus->setNumberOfKaon(theNucleus->getNumberOfKaon()-1);
156 if(theNucleus->getStore()->getConfig()->getRefraction()) {
162 INCL_DEBUG(
"Particle " << theParticle->getID() <<
" does not pass the Coulomb barrier, reflection." <<
'\n');
205 particleMass = particle->
getMass();
209 const G4int theA = theNucleus->getA();
210 const G4int theZ = theNucleus->getZ();
211 const G4int theS = theNucleus->getS();
215 if (particleTOut <= V)
218 TMinusV = particleTOut-V;
219 TMinusV2 = TMinusV*TMinusV;
223 const G4double particlePOut2 = 2.*particleMass*TMinusV+TMinusV2;
224 particlePIn = std::sqrt(particlePIn2);
225 particlePOut = std::sqrt(particlePOut2);
231 G4double theTransmissionProbability;
232 if(theNucleus->getStore()->getConfig()->getRefraction()) {
234 initializeRefractionVariables(particle);
236 if(internalReflection)
240 const G4double x = refractionIndexRatio*cosIncidentAngle;
241 const G4double y = (x - cosRefractionAngle) / (x + cosRefractionAngle);
243 theTransmissionProbability = 1. - y*y;
247 const G4double y = particlePIn+particlePOut;
250 theTransmissionProbability = 4.*particlePIn*particlePOut/(y*y);
255 const G4int particleZ = particle->
getZ();
256 if (particleZ <= 0 || particleZ >= theZ)
257 return theTransmissionProbability;
260 const G4double theTransmissionBarrier = theNucleus->getTransmissionBarrier(particle);
261 if (TMinusV >= theTransmissionBarrier)
262 return theTransmissionProbability;
265 const G4double px = std::sqrt(TMinusV/theTransmissionBarrier);
266 const G4double logCoulombTransmission =
267 particleZ*(theZ-particleZ)/137.03*std::sqrt(2.*particleMass/TMinusV/(1.+TMinusV/2./particleMass))
269 INCL_DEBUG(
"Coulomb barrier, logCoulombTransmission=" << logCoulombTransmission <<
'\n');
270 if (logCoulombTransmission > 35.)
272 theTransmissionProbability *= std::exp(-2.*logCoulombTransmission);
274 return theTransmissionProbability;
std::vector< G4int > getParticleListBiasVector() const
G4double getEmissionQValueCorrection(const G4int AParent, const G4int ZParent) const
Computes correction on the emission Q-value.
void setBiasCollisionVector(std::vector< G4int > BiasCollisionVector)
Set the vector list of biased vertices on the particle path.
G4double getPotentialEnergy() const
Get the particle potential energy.
void rpCorrelate()
Make the particle follow a strict r-p correlation.
G4int getZ() const
Returns the charge number.
G4double getKineticEnergy() const
Get the particle kinetic energy.
G4double getCosRPAngle() const
Get the cosine of the angle between position and momentum.
const G4INCL::ThreeVector & getMomentum() const
G4double getMass() const
Get the cached particle mass.