IAP GITLAB

Skip to content
Snippets Groups Projects
Commit 1145ac29 authored by Maximilian Reininghaus's avatar Maximilian Reininghaus :vulcan: Committed by ralfulrich
Browse files

removed TrackingLine::Init()

parent ed7475c4
No related branches found
No related tags found
2 merge requests!91Resolve "define further classes of processes (MaintenanceProcess?)",!76Resolve "Handling of boundary crossings in geometry tree"
......@@ -36,14 +36,12 @@ namespace corsika::cascade {
* plugged into the cascade simulation.
*
* <b>Tracking</b> must be a class according to the
* TrackingInterface providing the functions: <code>void
* Init();</code> and <code>auto GetTrack(Particle const& p)</auto>,
* where the latter has a return type of <code>
* geometry::Trajectory<corsika::geometry::Line or Helix> </code>
*
* <b>ProcessList</b> must be a ProcessSequence.
* TimeOfIntersection(corsika::geometry::Line const& line,
* TrackingInterface providing the functions:
* <code>auto GetTrack(Particle const& p)</auto>,
* with the return type <code>geometry::Trajectory<corsika::geometry::Line>
* </code>
*
* <b>ProcessList</b> must be a ProcessSequence. *
* <b>Stack</b> is the storage object for particle data, i.e. with
* Particle class type <code>Stack::ParticleType</code>
*
......@@ -75,7 +73,6 @@ namespace corsika::cascade {
* All components of the Cascade simulation must be configured here.
*/
void Init() {
fTracking.Init();
fProcessSequence.Init();
fStack.Init();
}
......
......@@ -62,9 +62,6 @@ namespace corsika::process::tracking_line {
corsika::environment::Environment const& pEnv)
: fEnvironment(pEnv) {}
template <class Stack, class Trajectory>
void TrackingLine<Stack, Trajectory>::Init() {}
template <class Stack, class Trajectory>
Trajectory TrackingLine<Stack, Trajectory>::GetTrack(Particle const& p) {
using std::cout;
......
......@@ -42,8 +42,6 @@ namespace corsika::process {
TrackingLine(corsika::environment::Environment const& pEnv);
void Init();
Trajectory GetTrack(Particle const& p);
};
......
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