From 459c43c8c468d00f0d436d935f9ec8531cc5669a Mon Sep 17 00:00:00 2001 From: ralfulrich <ralf.ulrich@kit.edu> Date: Sun, 16 Jan 2022 09:56:53 +0100 Subject: [PATCH] fix rebase --- corsika/detail/modules/TrackWriter.inl | 4 ++-- corsika/media/ExponentialRefractiveIndex.hpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/corsika/detail/modules/TrackWriter.inl b/corsika/detail/modules/TrackWriter.inl index c6af922f0..9c8a2410d 100644 --- a/corsika/detail/modules/TrackWriter.inl +++ b/corsika/detail/modules/TrackWriter.inl @@ -27,8 +27,8 @@ namespace corsika { auto const end = vT.getPosition(1).getCoordinates(); // write the track to the file - TOutput::write(vP.getPID(), vP.getEnergy(), vP.getWeight(), start, - vP.getTime(), end, vP.getTime() + vT.getDuration()); + TOutput::write(vP.getPID(), vP.getEnergy(), vP.getWeight(), start, vP.getTime(), end, + vP.getTime() + vT.getDuration()); return ProcessReturn::Ok; } diff --git a/corsika/media/ExponentialRefractiveIndex.hpp b/corsika/media/ExponentialRefractiveIndex.hpp index 02f74dfa8..fa43bea8d 100644 --- a/corsika/media/ExponentialRefractiveIndex.hpp +++ b/corsika/media/ExponentialRefractiveIndex.hpp @@ -24,8 +24,8 @@ namespace corsika { double n0_; ///< n0 constant. InverseLengthType lambda_; ///< lambda parameter. - LengthType radius_; ///< the planet radius. Point center_; ///< center of the planet. + LengthType radius_; ///< the planet radius. public: /** -- GitLab