From 06a60313385b7627ff922346aadae3808bb41248 Mon Sep 17 00:00:00 2001 From: ralfulrich <ralf.ulrich@kit.edu> Date: Mon, 25 Oct 2021 13:58:51 +0200 Subject: [PATCH] fixed wrong template parameters --- corsika/modules/Sibyll.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/corsika/modules/Sibyll.hpp b/corsika/modules/Sibyll.hpp index 9737e260d..8d781def6 100644 --- a/corsika/modules/Sibyll.hpp +++ b/corsika/modules/Sibyll.hpp @@ -43,7 +43,7 @@ namespace corsika::sibyll { public InteractionProcess<NuclearInteraction<TEnvironment, TNucleonModel>> { public: NuclearInteraction(TNucleonModel& model, TEnvironment const& env) - : NuclearInteractionModel<TNucleonModel, TEnvironment>(model, env) {} + : NuclearInteractionModel<TEnvironment, TNucleonModel>(model, env) {} }; } // namespace corsika::sibyll -- GitLab