IAP GITLAB

Skip to content
Snippets Groups Projects
Commit 27e9b4ac authored by Antonio Augusto Alves Junior's avatar Antonio Augusto Alves Junior Committed by ralfulrich
Browse files

[refactory-2020] stack implementations: more cleaning up

parent 0350c18e
No related branches found
No related tags found
No related merge requests found
...@@ -43,23 +43,11 @@ namespace corsika::simple_stack { ...@@ -43,23 +43,11 @@ namespace corsika::simple_stack {
} }
void setParticleData(std::tuple<corsika::Code, HEPEnergyType, MomentumVector, void setParticleData(std::tuple<corsika::Code, HEPEnergyType, MomentumVector,
corsika::Point, TimeType> const& v);/* { corsika::Point, TimeType> const& v);
this->setPID(std::get<0>(v));
this->setEnergy(std::get<1>(v));
this->setMomentum(std::get<2>(v));
this->setPosition(std::get<3>(v));
this->setTime(std::get<4>(v));
}*/
void setParticleData(ParticleInterface<StackIteratorInterface> const&, void setParticleData(ParticleInterface<StackIteratorInterface> const&,
std::tuple<corsika::Code, HEPEnergyType, MomentumVector, std::tuple<corsika::Code, HEPEnergyType, MomentumVector,
corsika::Point, TimeType> const& v);/* { corsika::Point, TimeType> const& v);
this->setPID(std::get<0>(v));
this->setEnergy(std::get<1>(v));
this->setMomentum(std::get<2>(v));
this->setPosition(std::get<3>(v));
this->setTime(std::get<4>(v));
}*/
/// individual setters /// individual setters
void setPID(corsika::Code const id) { void setPID(corsika::Code const id) {
......
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