IAP GITLAB

Skip to content
Snippets Groups Projects
Commit 59082738 authored by Felix Riehn's avatar Felix Riehn Committed by Alan Coleman
Browse files

use neutrino interaction

parent 5340f3d8
No related branches found
No related tags found
1 merge request!594Neutrino interactions with pythia 8310
......@@ -147,7 +147,9 @@ int main(int argc, char** argv) {
->needs(opt_Z)
->check(CLI::Range(1, 58))
->group("Primary");
app.add_option("-p,--pdg", "PDG code for primary.")
app.add_option("-p,--pdg",
"PDG code for primary (p=2212, gamma=22, e-=11, nu_e=12, mu-=13, "
"nu_mu=14, tau=15, nu_tau=16).")
->excludes(opt_A)
->excludes(opt_Z)
->group("Primary");
......@@ -397,6 +399,9 @@ int main(int argc, char** argv) {
corsika::pythia8::Decay decayPythia;
// neutrino interactions
corsika::pythia8::NeutrinoInteraction neutrinoPrimaryPythia(E0);
// hadronic photon interactions in resonance region
corsika::sophia::InteractionModel sophia;
......@@ -541,9 +546,9 @@ int main(int argc, char** argv) {
output.add("ZHS", zhs);
// assemble the final process sequence with radio
auto sequence =
make_sequence(stackInspect, hadronSequence, decayPythia, emCascade, emContinuous,
coreas, zhs, longprof, observationLevel, thinning, cut);
auto sequence = make_sequence(stackInspect, neutrinoPrimaryPythia, hadronSequence,
decayPythia, emCascade, emContinuous, coreas, zhs,
longprof, observationLevel, thinning, cut);
/* === END: SETUP PROCESS LIST === */
......@@ -554,6 +559,7 @@ int main(int argc, char** argv) {
Cascade EAS(env, tracking, sequence, output, stack);
// print our primary parameters all in one place
CORSIKA_LOG_INFO("Primary name: {}", beamCode);
if (app["--pdg"]->count() > 0) {
CORSIKA_LOG_INFO("Primary PDG ID: {}", app["--pdg"]->as<int>());
} else {
......
......@@ -10,3 +10,4 @@
#include <corsika/modules/pythia8/Decay.hpp>
#include <corsika/modules/pythia8/Interaction.hpp>
#include <corsika/modules/pythia8/NeutrinoInteraction.hpp>
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