IAP GITLAB

Skip to content
Snippets Groups Projects
Commit 2d157bb6 authored by Maximilian Reininghaus's avatar Maximilian Reininghaus :vulcan:
Browse files

HadronicElasticModel produces secondary

parent 44ff8cb1
No related branches found
No related tags found
1 merge request!258Interface change of DoDecay() and DoInteraction()
Pipeline #2173 canceled
...@@ -131,8 +131,7 @@ process::EProcessReturn HadronicElasticInteraction::DoInteraction(SetupView& vie ...@@ -131,8 +131,7 @@ process::EProcessReturn HadronicElasticInteraction::DoInteraction(SetupView& vie
do { do {
// |t| cannot become arbitrarily large, max. given by GER eq. (4.16), so we just // |t| cannot become arbitrarily large, max. given by GER eq. (4.16), so we just
// throw again until we have an acceptable value. Note that the formula holds in // throw again until we have an acceptable value.
// any frame despite of what is stated in the book.
absT = tDist(fRNG); absT = tDist(fRNG);
} while (absT >= maxT); } while (absT >= maxT);
...@@ -155,12 +154,10 @@ process::EProcessReturn HadronicElasticInteraction::DoInteraction(SetupView& vie ...@@ -155,12 +154,10 @@ process::EProcessReturn HadronicElasticInteraction::DoInteraction(SetupView& vie
pProjectileCoMNorm * sin(theta) * sin(phi), pProjectileCoMNorm * sin(theta) * sin(phi),
pProjectileCoMNorm * cos(theta)}))); pProjectileCoMNorm * cos(theta)})));
p.SetMomentum(projectileScatteredLab.GetSpaceLikeComponents()); view.AddSecondary(std::tuple<particles::Code, units::si::HEPEnergyType,
p.SetEnergy( corsika::stack::MomentumVector, geometry::Point, units::si::TimeType>{
sqrt(projectileScatteredLab.GetSpaceLikeComponents().squaredNorm() + p.GetPID(), sqrt(projectileScatteredLab.GetSpaceLikeComponents().squaredNorm() + units::static_pow<2>(particles::GetMass(p.GetPID()))),
units::static_pow<2>(particles::GetMass( projectileScatteredLab.GetSpaceLikeComponents(), p.GetPosition(), p.GetTime()});
p.GetPID())))); // Don't use energy from boost. It can be smaller than
// the momentum due to limited numerical accuracy.
return process::EProcessReturn::eOk; return process::EProcessReturn::eOk;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment