IAP GITLAB

Skip to content
Snippets Groups Projects
Commit 4900e746 authored by ralfulrich's avatar ralfulrich Committed by Ralf Ulrich
Browse files

testParticleCut

parent 6277b744
No related branches found
No related tags found
No related merge requests found
...@@ -119,6 +119,7 @@ namespace corsika::process { ...@@ -119,6 +119,7 @@ namespace corsika::process {
fEnergy = 0_GeV; fEnergy = 0_GeV;
} }
// LCOV_EXCL_START
void ParticleCut::ShowResults() const { void ParticleCut::ShowResults() const {
C8LOG_INFO(fmt::format( C8LOG_INFO(fmt::format(
" ******************************\n" " ******************************\n"
...@@ -131,6 +132,7 @@ namespace corsika::process { ...@@ -131,6 +132,7 @@ namespace corsika::process {
" ******************************", " ******************************",
fEmEnergy / 1_GeV, uiEmCount, fInvEnergy / 1_GeV, uiInvCount, fEnergy / 1_GeV)); fEmEnergy / 1_GeV, uiEmCount, fInvEnergy / 1_GeV, uiInvCount, fEnergy / 1_GeV));
} }
// LCOV_EXCL_STOP
void ParticleCut::Reset() { void ParticleCut::Reset() {
fEmEnergy = 0_GeV; fEmEnergy = 0_GeV;
......
...@@ -16,6 +16,7 @@ ...@@ -16,6 +16,7 @@
#include <corsika/utl/CorsikaFenv.h> #include <corsika/utl/CorsikaFenv.h>
#include <corsika/setup/SetupStack.h> #include <corsika/setup/SetupStack.h>
#include <corsika/setup/SetupTrajectory.h>
#include <catch2/catch.hpp> #include <catch2/catch.hpp>
...@@ -44,6 +45,9 @@ TEST_CASE("ParticleCut", "[processes]") { ...@@ -44,6 +45,9 @@ TEST_CASE("ParticleCut", "[processes]") {
particles::Code::Electron, particles::Code::MuPlus, particles::Code::NuE, particles::Code::Electron, particles::Code::MuPlus, particles::Code::NuE,
particles::Code::Neutron, particles::Code::NuMu}; particles::Code::Neutron, particles::Code::NuMu};
// common staring point
const geometry::Point point0(rootCS, 0_m, 0_m, 0_m);
SECTION("cut on particle type: inv") { SECTION("cut on particle type: inv") {
ParticleCut cut(20_GeV, false, true); ParticleCut cut(20_GeV, false, true);
...@@ -54,8 +58,7 @@ TEST_CASE("ParticleCut", "[processes]") { ...@@ -54,8 +58,7 @@ TEST_CASE("ParticleCut", "[processes]") {
std::tuple<particles::Code, units::si::HEPEnergyType, std::tuple<particles::Code, units::si::HEPEnergyType,
corsika::stack::MomentumVector, geometry::Point, units::si::TimeType>{ corsika::stack::MomentumVector, geometry::Point, units::si::TimeType>{
particles::Code::Proton, Eabove, particles::Code::Proton, Eabove,
corsika::stack::MomentumVector(rootCS, {0_GeV, 0_GeV, 0_GeV}), corsika::stack::MomentumVector(rootCS, {0_GeV, 0_GeV, 0_GeV}), point0, 0_ns});
geometry::Point(rootCS, 0_m, 0_m, 0_m), 0_ns});
// view on secondary particles // view on secondary particles
setup::StackView view(particle); setup::StackView view(particle);
// ref. to primary particle through the secondary view. // ref. to primary particle through the secondary view.
...@@ -66,7 +69,9 @@ TEST_CASE("ParticleCut", "[processes]") { ...@@ -66,7 +69,9 @@ TEST_CASE("ParticleCut", "[processes]") {
for (auto proType : particleList) for (auto proType : particleList)
projectile.AddSecondary(std::make_tuple( projectile.AddSecondary(std::make_tuple(
proType, Eabove, corsika::stack::MomentumVector(rootCS, {0_GeV, 0_GeV, 0_GeV}), proType, Eabove, corsika::stack::MomentumVector(rootCS, {0_GeV, 0_GeV, 0_GeV}),
geometry::Point(rootCS, 0_m, 0_m, 0_m), 0_ns)); point0, 0_ns));
CHECK(view.getEntries() == 11);
CHECK(stack.getEntries() == 12);
cut.DoSecondaries(view); cut.DoSecondaries(view);
...@@ -80,10 +85,9 @@ TEST_CASE("ParticleCut", "[processes]") { ...@@ -80,10 +85,9 @@ TEST_CASE("ParticleCut", "[processes]") {
ParticleCut cut(20_GeV, true, false); ParticleCut cut(20_GeV, true, false);
// add primary particle to stack // add primary particle to stack
auto particle = stack.AddParticle( auto particle = stack.AddParticle(std::make_tuple(
std::make_tuple(particles::Code::Proton, Eabove, particles::Code::Proton, Eabove,
corsika::stack::MomentumVector(rootCS, {0_GeV, 0_GeV, 0_GeV}), corsika::stack::MomentumVector(rootCS, {0_GeV, 0_GeV, 0_GeV}), point0, 0_ns));
geometry::Point(rootCS, 0_m, 0_m, 0_m), 0_ns));
// view on secondary particles // view on secondary particles
corsika::setup::StackView view(particle); corsika::setup::StackView view(particle);
// ref. to primary particle through the secondary view. // ref. to primary particle through the secondary view.
...@@ -94,7 +98,7 @@ TEST_CASE("ParticleCut", "[processes]") { ...@@ -94,7 +98,7 @@ TEST_CASE("ParticleCut", "[processes]") {
for (auto proType : particleList) { for (auto proType : particleList) {
projectile.AddSecondary(std::make_tuple( projectile.AddSecondary(std::make_tuple(
proType, Eabove, corsika::stack::MomentumVector(rootCS, {0_GeV, 0_GeV, 0_GeV}), proType, Eabove, corsika::stack::MomentumVector(rootCS, {0_GeV, 0_GeV, 0_GeV}),
geometry::Point(rootCS, 0_m, 0_m, 0_m), 0_ns)); point0, 0_ns));
} }
cut.DoSecondaries(view); cut.DoSecondaries(view);
...@@ -107,10 +111,9 @@ TEST_CASE("ParticleCut", "[processes]") { ...@@ -107,10 +111,9 @@ TEST_CASE("ParticleCut", "[processes]") {
ParticleCut cut(20_GeV, true, true); ParticleCut cut(20_GeV, true, true);
// add primary particle to stack // add primary particle to stack
auto particle = stack.AddParticle( auto particle = stack.AddParticle(std::make_tuple(
std::make_tuple(particles::Code::Proton, Eabove, particles::Code::Proton, Eabove,
corsika::stack::MomentumVector(rootCS, {0_GeV, 0_GeV, 0_GeV}), corsika::stack::MomentumVector(rootCS, {0_GeV, 0_GeV, 0_GeV}), point0, 0_ns));
geometry::Point(rootCS, 0_m, 0_m, 0_m), 0_ns));
// view on secondary particles // view on secondary particles
setup::StackView view{particle}; setup::StackView view{particle};
// ref. to primary particle through the secondary view. // ref. to primary particle through the secondary view.
...@@ -121,17 +124,17 @@ TEST_CASE("ParticleCut", "[processes]") { ...@@ -121,17 +124,17 @@ TEST_CASE("ParticleCut", "[processes]") {
for (auto proType : particleList) for (auto proType : particleList)
projectile.AddSecondary(std::make_tuple( projectile.AddSecondary(std::make_tuple(
proType, Ebelow, corsika::stack::MomentumVector(rootCS, {0_GeV, 0_GeV, 0_GeV}), proType, Ebelow, corsika::stack::MomentumVector(rootCS, {0_GeV, 0_GeV, 0_GeV}),
geometry::Point(rootCS, 0_m, 0_m, 0_m), 0_ns)); point0, 0_ns));
unsigned short A = 18; unsigned short A = 18;
unsigned short Z = 8; unsigned short Z = 8;
projectile.AddSecondary( projectile.AddSecondary(
std::make_tuple(particles::Code::Nucleus, Eabove * A, std::make_tuple(particles::Code::Nucleus, Eabove * A,
corsika::stack::MomentumVector(rootCS, {0_GeV, 0_GeV, 0_GeV}), corsika::stack::MomentumVector(rootCS, {0_GeV, 0_GeV, 0_GeV}),
geometry::Point(rootCS, 0_m, 0_m, 0_m), 0_ns, A, Z)); point0, 0_ns, A, Z));
projectile.AddSecondary( projectile.AddSecondary(
std::make_tuple(particles::Code::Nucleus, Ebelow * A, std::make_tuple(particles::Code::Nucleus, Ebelow * A,
corsika::stack::MomentumVector(rootCS, {0_GeV, 0_GeV, 0_GeV}), corsika::stack::MomentumVector(rootCS, {0_GeV, 0_GeV, 0_GeV}),
geometry::Point(rootCS, 0_m, 0_m, 0_m), 0_ns, A, Z)); point0, 0_ns, A, Z));
cut.DoSecondaries(view); cut.DoSecondaries(view);
...@@ -144,10 +147,9 @@ TEST_CASE("ParticleCut", "[processes]") { ...@@ -144,10 +147,9 @@ TEST_CASE("ParticleCut", "[processes]") {
const TimeType too_late = 1_s; const TimeType too_late = 1_s;
// add primary particle to stack // add primary particle to stack
auto particle = stack.AddParticle( auto particle = stack.AddParticle(std::make_tuple(
std::make_tuple(particles::Code::Proton, Eabove, particles::Code::Proton, Eabove,
corsika::stack::MomentumVector(rootCS, {0_GeV, 0_GeV, 0_GeV}), corsika::stack::MomentumVector(rootCS, {0_GeV, 0_GeV, 0_GeV}), point0, 1_ns));
geometry::Point(rootCS, 0_m, 0_m, 0_m), 1_ns));
// view on secondary particles // view on secondary particles
corsika::setup::StackView view(particle); corsika::setup::StackView view(particle);
// ref. to primary particle through the secondary view. // ref. to primary particle through the secondary view.
...@@ -158,7 +160,7 @@ TEST_CASE("ParticleCut", "[processes]") { ...@@ -158,7 +160,7 @@ TEST_CASE("ParticleCut", "[processes]") {
for (auto proType : particleList) { for (auto proType : particleList) {
projectile.AddSecondary(std::make_tuple( projectile.AddSecondary(std::make_tuple(
proType, Eabove, corsika::stack::MomentumVector(rootCS, {0_GeV, 0_GeV, 0_GeV}), proType, Eabove, corsika::stack::MomentumVector(rootCS, {0_GeV, 0_GeV, 0_GeV}),
geometry::Point(rootCS, 0_m, 0_m, 0_m), too_late)); point0, too_late));
} }
cut.DoSecondaries(view); cut.DoSecondaries(view);
...@@ -167,4 +169,29 @@ TEST_CASE("ParticleCut", "[processes]") { ...@@ -167,4 +169,29 @@ TEST_CASE("ParticleCut", "[processes]") {
cut.Reset(); cut.Reset();
CHECK(cut.GetCutEnergy() == 0_GeV); CHECK(cut.GetCutEnergy() == 0_GeV);
} }
corsika::setup::Trajectory const track{
geometry::Line{point0,
geometry::Vector<units::si::SpeedType::dimension_type>{
rootCS, {0_m / second, 0_m / second, -units::constants::c}}},
12_m / units::constants::c};
SECTION("cut on DoContinous, just invisibles") {
ParticleCut cut(20_GeV, false, true);
CHECK(cut.GetECut() == 20_GeV);
// add particles, all with energies above the threshold
// only cut is by species
for (auto proType : particleList) {
auto particle = stack.AddParticle(std::make_tuple(
proType, Eabove, corsika::stack::MomentumVector(rootCS, {0_GeV, 0_GeV, 0_GeV}),
point0, 0_ns));
cut.DoContinuous(particle, track);
}
CHECK(stack.getEntries() == 9);
CHECK(cut.GetNumberInvParticles() == 2);
CHECK(cut.GetInvEnergy() / 1_GeV == 2000);
}
} }
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