IAP GITLAB

Skip to content
Snippets Groups Projects
Commit 94e892c8 authored by Felix Riehn's avatar Felix Riehn
Browse files

fixed rebase

parent ece530f9
No related branches found
No related tags found
1 merge request!28Sibyll
...@@ -339,7 +339,7 @@ public: ...@@ -339,7 +339,7 @@ public:
void Init() {} void Init() {}
template <typename Particle> template <typename Particle>
double MinStepLength(Particle& p) const { double MinStepLength(Particle& p, setup::Trajectory&) const {
EnergyType E = p.GetEnergy(); EnergyType E = p.GetEnergy();
MassType m = corsika::particles::GetMass(p.GetPID()); MassType m = corsika::particles::GetMass(p.GetPID());
// env.GetDensity(); // env.GetDensity();
...@@ -374,8 +374,8 @@ public: ...@@ -374,8 +374,8 @@ public:
void DoDiscrete(Particle& p, Stack& s) const { void DoDiscrete(Particle& p, Stack& s) const {
} }
template <typename Particle, typename Trajectory, typename Stack> template <typename Particle, typename Stack>
EProcessReturn DoContinuous(Particle&, Trajectory&, Stack&) const { EProcessReturn DoContinuous(Particle&, setup::Trajectory&, Stack&) const {
return EProcessReturn::eOk; return EProcessReturn::eOk;
} }
......
...@@ -38,7 +38,8 @@ namespace corsika::units::si { ...@@ -38,7 +38,8 @@ namespace corsika::units::si {
using MassType = phys::units::quantity<phys::units::mass_d, double>; using MassType = phys::units::quantity<phys::units::mass_d, double>;
using MassDensityType = phys::units::quantity<phys::units::mass_density_d, double>; using MassDensityType = phys::units::quantity<phys::units::mass_density_d, double>;
using CrossSectionType = phys::units::quantity<sigma_d, double>; using CrossSectionType = phys::units::quantity<sigma_d, double>;
using MomentumType = phys::units::quantity<momentum_d, double>;
} // end namespace corsika::units::si } // end namespace corsika::units::si
/** /**
......
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