From a5fd0040db9b407ada2356b4e4b929e33b8d28d9 Mon Sep 17 00:00:00 2001 From: Maximilian Reininghaus <maximilian.reininghaus@kit.edu> Date: Tue, 12 Feb 2019 16:27:57 +0100 Subject: [PATCH] removed TrackingLine::Init() --- Framework/Cascade/Cascade.h | 13 +++++-------- Processes/TrackingLine/TrackingLine.cc | 3 --- Processes/TrackingLine/TrackingLine.h | 2 -- 3 files changed, 5 insertions(+), 13 deletions(-) diff --git a/Framework/Cascade/Cascade.h b/Framework/Cascade/Cascade.h index c55ac0b4..d82f0a0c 100644 --- a/Framework/Cascade/Cascade.h +++ b/Framework/Cascade/Cascade.h @@ -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(); } diff --git a/Processes/TrackingLine/TrackingLine.cc b/Processes/TrackingLine/TrackingLine.cc index 9021bf27..36a267a9 100644 --- a/Processes/TrackingLine/TrackingLine.cc +++ b/Processes/TrackingLine/TrackingLine.cc @@ -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; diff --git a/Processes/TrackingLine/TrackingLine.h b/Processes/TrackingLine/TrackingLine.h index cfc35680..bd0aff7f 100644 --- a/Processes/TrackingLine/TrackingLine.h +++ b/Processes/TrackingLine/TrackingLine.h @@ -42,8 +42,6 @@ namespace corsika::process { TrackingLine(corsika::environment::Environment const& pEnv); - void Init(); - Trajectory GetTrack(Particle const& p); }; -- GitLab