IAP GITLAB

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

suppressed output

parent d10704f0
No related branches found
No related tags found
No related merge requests found
...@@ -118,8 +118,8 @@ namespace corsika::process { ...@@ -118,8 +118,8 @@ namespace corsika::process {
std::cout << "calling Sibyll decay routine.." << std::endl; std::cout << "calling Sibyll decay routine.." << std::endl;
decsib_(); decsib_();
// print output // print output
int print_unit = 6; //int print_unit = 6;
sib_list_( print_unit ); //sib_list_( print_unit );
// copy particles from sibyll stack to corsika // copy particles from sibyll stack to corsika
int i = -1; int i = -1;
for (auto &psib: ss){ for (auto &psib: ss){
...@@ -127,7 +127,7 @@ namespace corsika::process { ...@@ -127,7 +127,7 @@ namespace corsika::process {
// FOR NOW: skip particles that have decayed in Sibyll, move to iterator? // FOR NOW: skip particles that have decayed in Sibyll, move to iterator?
if( abs(s_plist_.llist[ i ]) > 100 ) continue; if( abs(s_plist_.llist[ i ]) > 100 ) continue;
// add to corsika stack // add to corsika stack
cout << "decay product: " << process::sibyll::ConvertFromSibyll( psib.GetPID() ) << endl; //cout << "decay product: " << process::sibyll::ConvertFromSibyll( psib.GetPID() ) << endl;
auto pnew = s.NewParticle(); auto pnew = s.NewParticle();
pnew.SetEnergy( psib.GetEnergy() ); pnew.SetEnergy( psib.GetEnergy() );
pnew.SetPID( process::sibyll::ConvertFromSibyll( psib.GetPID() ) ); pnew.SetPID( process::sibyll::ConvertFromSibyll( psib.GetPID() ) );
......
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