IAP GITLAB

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

no explicity cut on Argon in NuclearInteractionModel

parent 24ff1d8d
No related branches found
No related tags found
No related merge requests found
...@@ -8,18 +8,12 @@ ...@@ -8,18 +8,12 @@
#pragma once #pragma once
#include <corsika/modules/epos/Interaction.hpp> #include <corsika/modules/epos/InteractionModel.hpp>
#include <corsika/modules/epos/EposStack.hpp> #include <corsika/modules/epos/EposStack.hpp>
#include <corsika/media/Environment.hpp>
#include <corsika/media/NuclearComposition.hpp>
#include <corsika/framework/utility/COMBoost.hpp> #include <corsika/framework/utility/COMBoost.hpp>
#include <corsika/framework/utility/CorsikaData.hpp> #include <corsika/framework/utility/CorsikaData.hpp>
#include <corsika/setup/SetupStack.hpp>
#include <corsika/setup/SetupTrajectory.hpp>
#include <epos.hpp> #include <epos.hpp>
#include <string> #include <string>
......
...@@ -57,10 +57,11 @@ namespace corsika::sibyll { ...@@ -57,10 +57,11 @@ namespace corsika::sibyll {
inline void inline void
NuclearInteractionModel<TEnvironment, TNucleonModel>::printCrossSectionTable( NuclearInteractionModel<TEnvironment, TNucleonModel>::printCrossSectionTable(
Code const pCode) const { Code const pCode) const {
if (pCode == Code::Argon) { if (!hadronicInteraction_.isValid(Code::Proton, pCode, 100_GeV)) {
CORSIKA_LOG_WARN("SIBYLL cannot handle Argon as target!"); CORSIKA_LOG_ERROR("Invalid target type {} for hadron interaction model.", pCode);
return; return;
} }
int const k = targetComponentsIndex_.at(pCode); int const k = targetComponentsIndex_.at(pCode);
Code const pNuclei[] = {Code::Helium, Code::Lithium7, Code::Oxygen, Code const pNuclei[] = {Code::Helium, Code::Lithium7, Code::Oxygen,
Code::Neon, Code::Argon, Code::Iron}; Code::Neon, Code::Argon, Code::Iron};
...@@ -109,12 +110,12 @@ namespace corsika::sibyll { ...@@ -109,12 +110,12 @@ namespace corsika::sibyll {
// loop over target components, at most 4!! // loop over target components, at most 4!!
int k = -1; int k = -1;
for (Code const ptarg : allElementsInUniverse) { for (Code const ptarg : allElementsInUniverse) {
if (ptarg == Code::Argon) continue; // NEED TO IGNORE Argon ....
++k; ++k;
CORSIKA_LOG_DEBUG("init target component: {} A={}", ptarg, get_nucleus_A(ptarg)); CORSIKA_LOG_DEBUG("init target component: {} A={}", ptarg, get_nucleus_A(ptarg));
int const ib = get_nucleus_A(ptarg); int const ib = get_nucleus_A(ptarg);
if (!hadronicInteraction_.isValid(Code::Proton, ptarg, 100_GeV)) { if (!hadronicInteraction_.isValid(Code::Proton, ptarg, 100_GeV)) {
throw std::runtime_error("Invalid target type."); CORSIKA_LOG_ERROR("Invalid target type {} for hadron interaction model.", ptarg);
continue;
} }
targetComponentsIndex_.insert(std::pair<Code, int>(ptarg, k)); targetComponentsIndex_.insert(std::pair<Code, int>(ptarg, k));
// loop over energies, fNEnBins log. energy bins // loop over energies, fNEnBins log. energy bins
......
...@@ -9,4 +9,22 @@ ...@@ -9,4 +9,22 @@
#pragma once #pragma once
#include <corsika/modules/epos/ParticleConversion.hpp> #include <corsika/modules/epos/ParticleConversion.hpp>
#include <corsika/modules/epos/Interaction.hpp> #include <corsika/modules/epos/InteractionModel.hpp>
#include <corsika/framework/process/InteractionProcess.hpp>
/**
* @file Sibyll.hpp
*
* Includes all the parts of the EPOS model. Defines the InteractionProcess<TModel>
* classes needed for the ProcessSequence.
*/
namespace corsika::epos {
/**
* epos::Interaction is the process for ProcessSequence.
*
* The epos::InteractionModel is wrapped as an InteractionProcess here in order
* to provide all the functions for ProcessSequence.
*/
class Interaction : public InteractionModel, public InteractionProcess<Interaction> {};
} // namespace corsika::epos
\ No newline at end of file
...@@ -12,7 +12,6 @@ ...@@ -12,7 +12,6 @@
#include <corsika/framework/core/PhysicalUnits.hpp> #include <corsika/framework/core/PhysicalUnits.hpp>
#include <corsika/framework/geometry/FourVector.hpp> #include <corsika/framework/geometry/FourVector.hpp>
#include <corsika/framework/random/RNGManager.hpp> #include <corsika/framework/random/RNGManager.hpp>
#include <corsika/framework/process/InteractionProcess.hpp>
#include <tuple> #include <tuple>
namespace corsika::epos { namespace corsika::epos {
...@@ -98,4 +97,4 @@ namespace corsika::epos { ...@@ -98,4 +97,4 @@ namespace corsika::epos {
} // namespace corsika::epos } // namespace corsika::epos
#include <corsika/detail/modules/epos/Interaction.inl> #include <corsika/detail/modules/epos/InteractionModel.inl>
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