From 916e546824f4b268f48ed82b9634bf3bec1540be Mon Sep 17 00:00:00 2001
From: ralfulrich <ralf.ulrich@kit.edu>
Date: Tue, 10 Nov 2020 00:03:23 +0100
Subject: [PATCH] warnings

---
 Framework/Geometry/Line.h                   | 2 +-
 Framework/Geometry/Trajectory.h             | 2 +-
 Processes/TrackingLeapFrogCurved/Tracking.h | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/Framework/Geometry/Line.h b/Framework/Geometry/Line.h
index 089cc6120..f54b02dbd 100644
--- a/Framework/Geometry/Line.h
+++ b/Framework/Geometry/Line.h
@@ -35,7 +35,7 @@ namespace corsika::geometry {
     Line() = delete;
     Line(const Line&) = default;
     Line(Line&&) = default;
-    Line& operator=(const Line&) = default;
+    Line& operator=(const Line&) = delete;
     Line(Point const& pR0, VelocityVec const& pV0)
         : r0(pR0)
         , v0(pV0) {}
diff --git a/Framework/Geometry/Trajectory.h b/Framework/Geometry/Trajectory.h
index de49a7272..47f498d8a 100644
--- a/Framework/Geometry/Trajectory.h
+++ b/Framework/Geometry/Trajectory.h
@@ -135,7 +135,7 @@ namespace corsika::geometry {
     LeapFrogTrajectory() = delete;
     LeapFrogTrajectory(const LeapFrogTrajectory&) = default;
     LeapFrogTrajectory(LeapFrogTrajectory&&) = default;
-    LeapFrogTrajectory& operator=(const LeapFrogTrajectory&) = default;
+    LeapFrogTrajectory& operator=(const LeapFrogTrajectory&) = delete;
     LeapFrogTrajectory(const Point& pos, const VelocityVec& initialVelocity,
                        MagneticFieldVector Bfield,
                        const decltype(square(corsika::units::si::meter) /
diff --git a/Processes/TrackingLeapFrogCurved/Tracking.h b/Processes/TrackingLeapFrogCurved/Tracking.h
index 63e1dad56..ee0ba6e7f 100644
--- a/Processes/TrackingLeapFrogCurved/Tracking.h
+++ b/Processes/TrackingLeapFrogCurved/Tracking.h
@@ -67,7 +67,7 @@ namespace corsika::process {
       direction =
           direction + direction.cross(magneticfield) * steplength * k; // Second Movement
       position = position + direction * steplength / 2;
-      auto steplength_true = steplength_true * (1.0 + double(direction.norm())) / 2;
+      auto steplength_true = steplength * (1.0 + double(direction.norm())) / 2;
       return std::make_tuple(position, direction.normalized(), steplength_true);
     }
 
-- 
GitLab