diff --git a/Framework/Cascade/Step.cc b/Framework/Cascade/Step.cc deleted file mode 100644 index ba29d2341a3863ec019e6001ad727c8901bee77d..0000000000000000000000000000000000000000 --- a/Framework/Cascade/Step.cc +++ /dev/null @@ -1,19 +0,0 @@ - -/* - * (c) Copyright 2018 CORSIKA Project, corsika-project@lists.kit.edu - * - * See file AUTHORS for a list of contributors. - * - * This software is distributed under the terms of the GNU General Public - * Licence version 3 (GPL Version 3). See file LICENSE for a full version of - * the license. - */ - -namespace cascade; - -void Cascade::Step(auto& sequence, Particle& particle) { - double nextStep = sequence.MinStepLength(particle); - Trajectory trajectory = sequence.Transport(particle, nextStep); - sequence.DoContinuous(particle, trajectory); - sequence.DoDiscrete(particle); -}