IAP GITLAB

Skip to content
Snippets Groups Projects
Commit 4ff51903 authored by ralfulrich's avatar ralfulrich
Browse files

added line of comment

parent 37952e7d
No related branches found
No related tags found
No related merge requests found
......@@ -70,11 +70,12 @@ public:
}
void SetParticleData(
GeometryDataInterface<T>& parent,
const std::tuple<const corsika::environment::BaseNodeType*>) { // v = {nullptr}) {
SetNode(parent.GetNode());
const std::tuple<const corsika::environment::BaseNodeType*>) {
SetNode(parent.GetNode()); // copy Node from parent particle!
}
void SetParticleData() { SetNode(nullptr); }
void SetParticleData(GeometryDataInterface<T>& parent) { SetNode(parent.GetNode()); }
void SetParticleData(GeometryDataInterface<T>& parent) { SetNode(parent.GetNode()); // copy Node from parent particle!
}
void SetNode(const corsika::environment::BaseNodeType* v) {
GetStackData().SetNode(GetIndex(), v);
}
......
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