From dfcfc678d78503d6839ed5d5af7fb14c0e75b3e1 Mon Sep 17 00:00:00 2001
From: ralfulrich <ralf.ulrich@kit.edu>
Date: Sun, 9 May 2021 22:42:43 +0200
Subject: [PATCH] some improvements

---
 .gitlab-ci.yml                |  1 +
 examples/em_shower.cpp        |  4 ++--
 tests/modules/testPythia8.cpp | 20 ++++++++++++++------
 3 files changed, 17 insertions(+), 8 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 2ef93a896..c48fc9c6a 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -549,6 +549,7 @@ sanity:
     - corsika
   before_script:
     - apt-get update && apt-get install -y python3-pip
+    - pip3 install --upgrade cython
   script:
     - cd ${CI_PROJECT_DIR}/python  # change into the Python directory
     - pip3 install --user -e '.[test]'  # install the package + test deps
diff --git a/examples/em_shower.cpp b/examples/em_shower.cpp
index 2d67cf52d..5dc3e5310 100644
--- a/examples/em_shower.cpp
+++ b/examples/em_shower.cpp
@@ -140,7 +140,7 @@ int main(int argc, char** argv) {
 
   OutputManager output("em_shower_outputs");
   ShowerAxis const showerAxis{injectionPos, (showerCore - injectionPos) * 1.02, env,
-                              false, 1000.};
+                              false, 1000};
 
   // setup processes, decays and interactions
 
@@ -190,4 +190,4 @@ int main(int argc, char** argv) {
   longprof.save("longprof_emShower.txt");
 
   output.endOfLibrary();
-}
\ No newline at end of file
+}
diff --git a/tests/modules/testPythia8.cpp b/tests/modules/testPythia8.cpp
index 846c73487..566383b1b 100644
--- a/tests/modules/testPythia8.cpp
+++ b/tests/modules/testPythia8.cpp
@@ -96,8 +96,10 @@ TEST_CASE("Pythia8Interface", "modules") {
   logging::set_level(logging::level::info);
   auto [env, csPtr, nodePtr] = setup::testing::setup_environment(Code::Proton);
   auto const& cs = *csPtr;
-  [[maybe_unused]] auto const& env_dummy = env;
-  [[maybe_unused]] auto const& node_dummy = nodePtr;
+  {
+    [[maybe_unused]] auto const& env_dummy = env;
+    [[maybe_unused]] auto const& node_dummy = nodePtr;
+  }
 
   SECTION("pythia decay") {
     HEPEnergyType const P0 = 10_GeV;
@@ -228,15 +230,21 @@ TEST_CASE("Pythia8Interface", "modules") {
 
     // incompatible target
     auto [env_Fe, csPtr_Fe, nodePtr_Fe] = setup::testing::setup_environment(Code::Iron);
-    [[maybe_unused]] auto const& cs_Fe = *csPtr_Fe;
-    [[maybe_unused]] auto const& env_dummy_Fe = env_Fe;
-    [[maybe_unused]] auto const& node_dummy_Fe = nodePtr_Fe;
-
+    {
+      [[maybe_unused]] auto const& cs_Fe = *csPtr_Fe;
+      [[maybe_unused]] auto const& env_dummy_Fe = env_Fe;
+      [[maybe_unused]] auto const& node_dummy_Fe = nodePtr_Fe;
+    }
+    
     // resonable projectile, but tool low energy
     auto [stackPtr, secViewPtr] = setup::testing::setup_stack(
         Code::Proton, 0, 0, 1_GeV, (setup::Environment::BaseNodeType* const)nodePtr_Fe,
         *csPtr_Fe);
     auto& view = *secViewPtr;
+    {
+      [[maybe_unused]] auto const& dummy_StackPtr = stackPtr;
+    }
+    
 
     corsika::pythia8::Interaction collision;
 
-- 
GitLab