diff --git a/Framework/Cascade/Cascade.h b/Framework/Cascade/Cascade.h index c55ac0b43b86e1956750618ec65e868a0d1334e0..d82f0a0cf0eedfdda86d361974fb0ce9c6cdb393 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 9021bf2796ce50768ca8f7c9c13a7d971f193c9c..36a267a928ab7ef2c54d9eb0007348f1d50a6fea 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 cfc3568079bf7ad6433f2f28aee416230d9d5866..bd0aff7f25587ffcdbd9d6af77f7885dc95132a7 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); };