From 9cc3a0480a2af038487dd688e4976d933ef16f93 Mon Sep 17 00:00:00 2001
From: ralfulrich <ralf.ulrich@kit.edu>
Date: Tue, 21 Dec 2021 00:58:13 +0100
Subject: [PATCH] interface change in addParticle

---
 tests/framework/testGeometry.cpp | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/tests/framework/testGeometry.cpp b/tests/framework/testGeometry.cpp
index 83abab67d..b820d946f 100644
--- a/tests/framework/testGeometry.cpp
+++ b/tests/framework/testGeometry.cpp
@@ -347,7 +347,9 @@ TEST_CASE("Geometry Trajectories") {
   // create an arbitrary location of the particle
   const Point pos(rootCS, 50_m, 10_m, 80_m);
   // add it finally to the stack
-  auto const particle1{stack.addParticle(std::make_tuple(particle, plab, pos, 0_ns))};
+  auto const particle1{stack.addParticle(
+      std::make_tuple(particle, calculate_kinetic_energy(plab.getNorm(), pmass),
+                      plab.normalized(), pos, 0_ns))};
 
   SECTION("Line") {
     SpeedType const V0 = 3_m / second;
-- 
GitLab