IAP GITLAB

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

set vertical eas to produce FPE due to zero tracklength

parent 99d34f33
No related branches found
No related tags found
No related merge requests found
...@@ -31,8 +31,6 @@ ...@@ -31,8 +31,6 @@
#include <corsika/process/sibyll/Interaction.h> #include <corsika/process/sibyll/Interaction.h>
#include <corsika/process/sibyll/NuclearInteraction.h> #include <corsika/process/sibyll/NuclearInteraction.h>
//#include <corsika/process/pythia/Decay.h>
#include <corsika/process/urqmd/UrQMD.h> #include <corsika/process/urqmd/UrQMD.h>
#include <corsika/process/particle_cut/ParticleCut.h> #include <corsika/process/particle_cut/ParticleCut.h>
...@@ -64,7 +62,6 @@ using namespace corsika::units::si; ...@@ -64,7 +62,6 @@ using namespace corsika::units::si;
void registerRandomStreams() { void registerRandomStreams() {
random::RNGManager::GetInstance().RegisterRandomStream("cascade"); random::RNGManager::GetInstance().RegisterRandomStream("cascade");
random::RNGManager::GetInstance().RegisterRandomStream("s_rndm"); random::RNGManager::GetInstance().RegisterRandomStream("s_rndm");
// random::RNGManager::GetInstance().RegisterRandomStream("pythia");
random::RNGManager::GetInstance().RegisterRandomStream("UrQMD"); random::RNGManager::GetInstance().RegisterRandomStream("UrQMD");
random::RNGManager::GetInstance().SeedAll(); random::RNGManager::GetInstance().SeedAll();
...@@ -103,9 +100,9 @@ int main() { ...@@ -103,9 +100,9 @@ int main() {
// setup particle stack, and add primary particle // setup particle stack, and add primary particle
setup::Stack stack; setup::Stack stack;
stack.Clear(); stack.Clear();
const Code beamCode = Code::Proton; const Code beamCode = Code::RhoMinus; //Code::KStarMinus;
auto const mass = particles::GetMass(beamCode); auto const mass = particles::GetMass(beamCode);
const HEPEnergyType E0 = 0.1_PeV; const HEPEnergyType E0 = 0.1_TeV;
double theta = 0.; double theta = 0.;
double phi = 0.; double phi = 0.;
...@@ -155,7 +152,7 @@ int main() { ...@@ -155,7 +152,7 @@ int main() {
particles::Code::KMinus, particles::Code::K0Long, particles::Code::K0Short}; particles::Code::KMinus, particles::Code::K0Long, particles::Code::K0Short};
process::sibyll::Interaction sibyll; process::sibyll::Interaction sibyll;
process::sibyll::NuclearInteraction sibyllNuc(sibyll, env); //process::sibyll::NuclearInteraction sibyllNuc(sibyll, env);
process::sibyll::Decay decay; process::sibyll::Decay decay;
//process::pythia::Decay decay(trackedHadrons); //process::pythia::Decay decay(trackedHadrons);
...@@ -173,7 +170,7 @@ int main() { ...@@ -173,7 +170,7 @@ int main() {
process::UrQMD::UrQMD urqmd; process::UrQMD::UrQMD urqmd;
auto sibyllSequence = sibyll << sibyllNuc; auto sibyllSequence = sibyll; // << sibyllNuc;
process::switch_process::SwitchProcess switchProcess(urqmd, sibyllSequence, 55_GeV); process::switch_process::SwitchProcess switchProcess(urqmd, sibyllSequence, 55_GeV);
auto sequence = switchProcess << decay << eLoss << cut << observationLevel auto sequence = switchProcess << decay << eLoss << cut << observationLevel
<< trackWriter; << trackWriter;
......
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