IAP GITLAB

Skip to content
Snippets Groups Projects
Commit f7fd58fb authored by ralfulrich's avatar ralfulrich Committed by Maximilian Reininghaus
Browse files

undo poor naming

parent df704e19
No related branches found
No related tags found
No related merge requests found
...@@ -28,7 +28,7 @@ namespace corsika { ...@@ -28,7 +28,7 @@ namespace corsika {
// environment: // environment:
template <typename TStackIter> template <typename TStackIter>
using SetupGeometryDataInterface = using SetupGeometryDataInterface =
typename node::make_GeometryDataInterface<TStackIter, setup::Environment>::type; typename node::MakeGeometryDataInterface<TStackIter, setup::Environment>::type;
// combine particle data stack with geometry information for tracking // combine particle data stack with geometry information for tracking
template <typename TStackIter> template <typename TStackIter>
......
...@@ -117,7 +117,7 @@ namespace corsika::node { ...@@ -117,7 +117,7 @@ namespace corsika::node {
}; };
template <typename T, typename TEnv> template <typename T, typename TEnv>
struct make_GeometryDataInterface { struct MakeGeometryDataInterface {
typedef GeometryDataInterface<T, TEnv> type; typedef GeometryDataInterface<T, TEnv> type;
}; };
......
...@@ -112,7 +112,7 @@ namespace corsika::weights { ...@@ -112,7 +112,7 @@ namespace corsika::weights {
}; };
template <typename TParentStack> template <typename TParentStack>
struct make_WeightDataInterface { struct MakeWeightDataInterface {
typedef WeightDataInterface<TParentStack> type; typedef WeightDataInterface<TParentStack> type;
}; };
......
...@@ -26,7 +26,7 @@ public: ...@@ -26,7 +26,7 @@ public:
// the GeometryNode stack needs to know the type of geometry-nodes from the DummyEnv: // the GeometryNode stack needs to know the type of geometry-nodes from the DummyEnv:
template <typename TStackIter> template <typename TStackIter>
using DummyGeometryDataInterface = using DummyGeometryDataInterface =
typename node::make_GeometryDataInterface<TStackIter, DummyEnv>::type; typename node::MakeGeometryDataInterface<TStackIter, DummyEnv>::type;
// combine dummy stack with geometry information for tracking // combine dummy stack with geometry information for tracking
template <typename TStackIter> template <typename TStackIter>
......
...@@ -20,7 +20,7 @@ using namespace std; ...@@ -20,7 +20,7 @@ using namespace std;
// the Weight stack: // the Weight stack:
template <typename TStackIter> template <typename TStackIter>
using DummyWeightDataInterface = using DummyWeightDataInterface =
typename weights::make_WeightDataInterface<TStackIter>::type; typename weights::MakeWeightDataInterface<TStackIter>::type;
// combine dummy stack with geometry information for tracking // combine dummy stack with geometry information for tracking
template <typename TStackIter> template <typename TStackIter>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment