From 0819dc88f15cd4c8225217f76bb8cec08854abfe Mon Sep 17 00:00:00 2001
From: AAAlvesJr <aalvesju@gmail.com>
Date: Mon, 23 Nov 2020 17:07:41 +0100
Subject: [PATCH] [refactory-2020] stack implementations

---
 corsika/stack/SuperStupidStack.hpp | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/corsika/stack/SuperStupidStack.hpp b/corsika/stack/SuperStupidStack.hpp
index f35b41da7..34251a82b 100644
--- a/corsika/stack/SuperStupidStack.hpp
+++ b/corsika/stack/SuperStupidStack.hpp
@@ -266,9 +266,9 @@ private:
 	 /// the actual memory to store particle data
 	 code_vector_type dataPID_;
 	 energy_vector_type dataE_;
-	 std::vector<momentum_type> momentum_;
-	 std::vector<corsika::Point> position_;
-	 std::vector<corsika::units::si::TimeType> time_;
+	 momentum_vector_type momentum_;
+	 point_vector_type position_;
+	 time_vector_type time_;
 
 }; // end class SuperStupidStackImpl
 
-- 
GitLab