From 015c2fe29cd912bd6597b4bb81795091c1ebde7c Mon Sep 17 00:00:00 2001 From: ralfulrich <ralf.ulrich@kit.edu> Date: Sat, 29 May 2021 08:36:55 +0200 Subject: [PATCH] missing file --- .../stack/DefaultSecondaryProducer.hpp | 54 +++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 corsika/framework/stack/DefaultSecondaryProducer.hpp diff --git a/corsika/framework/stack/DefaultSecondaryProducer.hpp b/corsika/framework/stack/DefaultSecondaryProducer.hpp new file mode 100644 index 000000000..b91039aca --- /dev/null +++ b/corsika/framework/stack/DefaultSecondaryProducer.hpp @@ -0,0 +1,54 @@ +/* + * (c) Copyright 2021 CORSIKA Project, corsika-project@lists.kit.edu + * + * This software is distributed under the terms of the GNU General Public + * Licence version 3 (GPL Version 3). See file LICENSE for a full version of + * the license. + */ + +#pragma once + +#include <corsika/framework/stack/SecondaryView.hpp> + +namespace corsika { + + /** + * Class to handle the generation of new secondaries. Used as default mix-in for + * SecondaryView. + */ + template <class T1, template <class> class T2> + class DefaultSecondaryProducer { + + using view_type = SecondaryView<T1, T2, DefaultSecondaryProducer>; + + public: + static bool constexpr has_event{false}; + + /** + * Method is called after a new secondary has been created on the + * SecondaryView. Extra logic can be introduced here. + * + * The input Particle is the new secondary that was produced and + * is of course a reference into the SecondaryView itself. + */ + template <typename Particle> + void new_secondary(Particle&&) const { + CORSIKA_LOG_TRACE("DefaultSecondaryProducer::new_secondary(Particle&&)"); + } + + /** + * Method is called when a new SecondaryView is being created + * created. Extra logic can be introduced here. + * + * The input Particle is a reference object into the original + * parent stack! It is not a reference into the SecondaryView + * itself. + */ + template <typename Particle> + DefaultSecondaryProducer(Particle const&) { + + CORSIKA_LOG_TRACE("DefaultSecondaryProducer::DefaultSecondaryProducer(Particle&)"); + } + }; + +} // namespace corsika \ No newline at end of file -- GitLab