IAP GITLAB

Skip to content
Snippets Groups Projects

Resolve "Implement thinning algorithms"

Merged Maximilian Reininghaus requested to merge 445-implement-thinning-algorithms into master
All threads resolved!
1 file
+ 34
0
Compare changes
  • Side-by-side
  • Inline
+ 34
0
/*
* (c) Copyright 2022 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/core/PhysicalUnits.hpp>
#include <corsika/framework/process/SecondariesProcess.hpp>
namespace corsika {
//! This process implements thinning for EM splitting processes (1 -> 2)
class EMThinning : public SecondariesProcess<EMThinning> {
public:
/**
* Apply thinning to secondaries.
*
* @tparam TStackView
*/
template <typename TStackView>
void doSecondaries(TStackView&);
};
}
#include <corsika/detail/process/thinning/EMThinning.inl>
Loading