IAP GITLAB

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

testPythia8

parent ec9f5338
No related branches found
No related tags found
No related merge requests found
......@@ -27,8 +27,6 @@ TEST_CASE("Pythia", "[processes]") {
SECTION("linking pythia") {
using namespace Pythia8;
using std::cout;
using std::endl;
// Generator. Process selection. LHC initialization. Histogram.
Pythia pythia;
......@@ -50,15 +48,15 @@ TEST_CASE("Pythia", "[processes]") {
event.append(321, 1, 0, 0, 0., 0., 100., sqrt(pz * pz + m * m), m);
if (!pythia.next())
cout << "decay failed!" << endl;
CORSIKA_LOG_CRITICAL("decay failed!");
else
cout << "particles after decay: " << event.size() << endl;
CORSIKA_LOG_DEBUG("particles after decay: {}", event.size());
event.list();
// loop over final state
for (int i = 0; i < pythia.event.size(); ++i)
if (pythia.event[i].isFinal()) {
cout << "particle: id=" << pythia.event[i].id() << endl;
CORSIKA_LOG_DEBUG("particle: id= {}", pythia.event[i].id());
}
}
......
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