IAP GITLAB

Skip to content
Snippets Groups Projects
Commit 4935690a authored by Felix Riehn's avatar Felix Riehn
Browse files

check that threshold is high enough for pythia in EAS simulation

parent a75bc0e7
No related branches found
No related tags found
1 merge request!549Draft: "Use Pythia for interactions"
...@@ -416,6 +416,13 @@ int main(int argc, char** argv) { ...@@ -416,6 +416,13 @@ int main(int argc, char** argv) {
// have SIBYLL always for PROPOSAL photo-hadronic interactions // have SIBYLL always for PROPOSAL photo-hadronic interactions
auto sibyll = std::make_shared<corsika::sibyll::Interaction>(all_elements); auto sibyll = std::make_shared<corsika::sibyll::Interaction>(all_elements);
// energy threshold for high energy hadronic model. Affects LE/HE switch for
// hadron interactions and the hadronic photon model in proposal
// valid range varies a bit between models. pythia only has cross sections tabulated
// down to 100GeV.
HEPEnergyType const heHadronModelThreshold =
1_GeV * app["--hadronModelTransitionEnergy"]->as<double>();
if (auto const modelStr = app["--hadronModel"]->as<std::string>(); if (auto const modelStr = app["--hadronModel"]->as<std::string>();
modelStr == "SIBYLL-2.3d") { modelStr == "SIBYLL-2.3d") {
heModel = DynamicInteractionProcess<StackType>{sibyll}; heModel = DynamicInteractionProcess<StackType>{sibyll};
...@@ -428,6 +435,11 @@ int main(int argc, char** argv) { ...@@ -428,6 +435,11 @@ int main(int argc, char** argv) {
} else if (modelStr == "Pythia8") { } else if (modelStr == "Pythia8") {
heModel = DynamicInteractionProcess<StackType>{ heModel = DynamicInteractionProcess<StackType>{
std::make_shared<corsika::pythia8::Interaction>()}; std::make_shared<corsika::pythia8::Interaction>()};
if (heHadronModelThreshold < 100_GeV) {
CORSIKA_LOG_CRITICAL(
"threshold too low for Pythia! use --hadronModelTransitionEnergy>=100_GeV!");
return EXIT_FAILURE;
}
} else { } else {
CORSIKA_LOG_CRITICAL("invalid choice \"{}\"; also check argument parser", modelStr); CORSIKA_LOG_CRITICAL("invalid choice \"{}\"; also check argument parser", modelStr);
return EXIT_FAILURE; return EXIT_FAILURE;
...@@ -471,11 +483,6 @@ int main(int argc, char** argv) { ...@@ -471,11 +483,6 @@ int main(int argc, char** argv) {
set_energy_production_threshold(Code::TauMinus, std::min({emcut, hadcut, mucut})); set_energy_production_threshold(Code::TauMinus, std::min({emcut, hadcut, mucut}));
set_energy_production_threshold(Code::TauPlus, std::min({emcut, hadcut, mucut})); set_energy_production_threshold(Code::TauPlus, std::min({emcut, hadcut, mucut}));
// energy threshold for high energy hadronic model. Affects LE/HE switch for
// hadron interactions and the hadronic photon model in proposal
HEPEnergyType const heHadronModelThreshold =
1_GeV * app["--hadronModelTransitionEnergy"]->as<double>();
corsika::proposal::Interaction emCascade( corsika::proposal::Interaction emCascade(
env, sophia, sibyll->getHadronInteractionModel(), heHadronModelThreshold); env, sophia, sibyll->getHadronInteractionModel(), heHadronModelThreshold);
......
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