diff --git a/corsika/detail/framework/core/Cascade.inl b/corsika/detail/framework/core/Cascade.inl index 2bb692d062ea3646439753ca94fb63318f6dc466..64ca0a3aa5ff2f9fb0a95062d27ba4dcdba4807c 100644 --- a/corsika/detail/framework/core/Cascade.inl +++ b/corsika/detail/framework/core/Cascade.inl @@ -31,10 +31,12 @@ namespace corsika { setNodes(); // put each particle on stack in correct environment volume while (!stack_.isEmpty()) { + + sequence_.initCascadeEquations(); + while (!stack_.isEmpty()) { CORSIKA_LOG_TRACE("Stack: {}", stack_.asString()); count_++; - auto pNext = stack_.getNextParticle(); CORSIKA_LOG_TRACE( @@ -46,6 +48,7 @@ namespace corsika { step(pNext); sequence_.doStack(stack_); } + // do cascade equations, which can put new particles on Stack, // thus, the double loop sequence_.doCascadeEquations(stack_); diff --git a/corsika/detail/framework/process/ProcessSequence.inl b/corsika/detail/framework/process/ProcessSequence.inl index 78a28da60262432520abb7a58339e69e52461939..4d381abb16af98729d6defdfb53bfc0503d420f9 100644 --- a/corsika/detail/framework/process/ProcessSequence.inl +++ b/corsika/detail/framework/process/ProcessSequence.inl @@ -381,6 +381,30 @@ namespace corsika { } } + template <typename TProcess1, typename TProcess2, int IndexStart, int IndexProcess1, + int IndexProcess2> + void ProcessSequence<TProcess1, TProcess2, IndexStart, IndexProcess1, + IndexProcess2>::initCascadeEquations() { + + if constexpr (is_process_v<process1_type>) { // to protect from further compiler + // errors if process1_type is invalid + if constexpr ((process1_type::is_process_sequence && + !process1_type::is_switch_process_sequence) || + is_cascade_equations_process_v<process1_type>) { + A_.initCascadeEquations(); + } + } + + if constexpr (is_process_v<process2_type>) { // to protect from further compiler + // errors if process2_type is invalid + if constexpr ((process2_type::is_process_sequence && + !process2_type::is_switch_process_sequence) || + is_cascade_equations_process_v<process2_type>) { + B_.initCascadeEquations(); + } + } + } // namespace corsika + template <typename TProcess1, typename TProcess2, int IndexStart, int IndexProcess1, int IndexProcess2> template <typename TSecondaryView> diff --git a/corsika/detail/modules/conex/CONEXhybrid.inl b/corsika/detail/modules/conex/CONEXhybrid.inl index 47a072f8a16553f80f4c28a03b32bf912d8b4308..be172091f495fdaad83392d261f6b7de8e3ff214 100644 --- a/corsika/detail/modules/conex/CONEXhybrid.inl +++ b/corsika/detail/modules/conex/CONEXhybrid.inl @@ -99,7 +99,7 @@ namespace corsika { configPath.c_str(), configPath.size()); } - inline void CONEXhybrid::init() { + inline void CONEXhybrid::initCascadeEquations() { double eprima = primaryEnergy_ / 1_GeV; @@ -234,7 +234,7 @@ namespace corsika { } template <typename TStack> - inline void CONEXhybrid::doCascadeEquations(TStack& stack) { + inline void CONEXhybrid::doCascadeEquations(TStack&) { ::conex::conexcascade_(); diff --git a/corsika/framework/process/ProcessSequence.hpp b/corsika/framework/process/ProcessSequence.hpp index 432b78a288fa9c9ea4bf068c77b7ffe62ac509ac..407f403495c7c4d281880a897366f3b76b22a123 100644 --- a/corsika/framework/process/ProcessSequence.hpp +++ b/corsika/framework/process/ProcessSequence.hpp @@ -211,11 +211,16 @@ namespace corsika { void doStack(TStack& stack); /** - Execute the CascadeEquationsProcess-es in the ProcessSequence + * Execute the CascadeEquationsProcess-es in the ProcessSequence. */ template <typename TStack> void doCascadeEquations(TStack& stack); + /** + * Init the CascadeEquationsProcess-es in the ProcessSequence. + */ + void initCascadeEquations(); + /** * Calculate the maximum allowed length of the next tracking step, based on all * ContinuousProcess-es diff --git a/corsika/modules/conex/CONEXhybrid.hpp b/corsika/modules/conex/CONEXhybrid.hpp index cbc73b7afe8ff8aaf224d36acfb42f36e7d6dc35..0d3878e474212cab10c6fefaf81ad8b23067d145 100644 --- a/corsika/modules/conex/CONEXhybrid.hpp +++ b/corsika/modules/conex/CONEXhybrid.hpp @@ -8,11 +8,13 @@ #pragma once +#include <corsika/framework/process/SecondariesProcess.hpp> +#include <corsika/framework/process/CascadeEquationsProcess.hpp> + #include <corsika/framework/core/PhysicalUnits.hpp> #include <corsika/framework/core/ParticleProperties.hpp> #include <corsika/framework/geometry/Point.hpp> #include <corsika/framework/geometry/Vector.hpp> -#include <corsika/framework/process/SecondariesProcess.hpp> #include <corsika/media/ShowerAxis.hpp> #include <corsika/modules/conex/CONEX_f.hpp> @@ -23,7 +25,8 @@ namespace corsika { LengthType constexpr earthRadius{6371315 * meter}; } // namespace conex - class CONEXhybrid : public SecondariesProcess<CONEXhybrid> { + class CONEXhybrid : public CascadeEquationsProcess<CONEXhybrid>, + public SecondariesProcess<CONEXhybrid> { public: CONEXhybrid(Point center, ShowerAxis const& showerAxis, LengthType groundDist, @@ -41,7 +44,7 @@ namespace corsika { * init currently needs to be called to initializa a new * event. All tables are cleared, etc. */ - void init(); + void initCascadeEquations(); /** * Cascade equations are solved basoned on the data in the tables diff --git a/examples/hybrid_MC.cpp b/examples/hybrid_MC.cpp index 04a126366a2d408e074532b447f3357aa4145bed..dabed46e9f4e598b4146eebd673cc9ad07721fd0 100644 --- a/examples/hybrid_MC.cpp +++ b/examples/hybrid_MC.cpp @@ -291,8 +291,6 @@ int main(int argc, char** argv) { cut.reset(); eLoss.reset(); - conex_model.solveCE(); - auto const hists = sibyllCounted.getHistogram() + sibyllNucCounted.getHistogram() + urqmdCounted.getHistogram(); diff --git a/tests/modules/testCONEX.cpp b/tests/modules/testCONEX.cpp index baf808aede5830c0cbc3795448726500ecb7c544..985043d4dca501fab27359ff8be5eb557615ca8f 100644 --- a/tests/modules/testCONEX.cpp +++ b/tests/modules/testCONEX.cpp @@ -103,7 +103,7 @@ TEST_CASE("CONEXSourceCut") { [[maybe_unused]] corsika::sibyll::NuclearInteraction sibyllNuc(sibyll, env); CONEXhybrid conex(center, showerAxis, t, injectionHeight, E0, get_PDG(Code::Proton)); - conex.init(); + conex.initCascadeEquations(); HEPEnergyType const Eem{1_PeV}; auto const momentum = showerAxis.getDirection() * Eem;