IAP GITLAB

Skip to content
Snippets Groups Projects
Commit 6f43b97e authored by Maximilian Reininghaus's avatar Maximilian Reininghaus :vulcan:
Browse files

corrected units in Pythia cross-section

parent 4faf376a
No related branches found
No related tags found
1 merge request!166Resolve "Correct length units in Pythia interface?"
Pipeline #994 passed
......@@ -150,7 +150,7 @@ namespace corsika::process::pythia {
const double sigEla = fSigma.sigmaEl();
const double sigProd = fSigma.sigmaTot() - sigEla;
return std::make_tuple(sigProd * 1_mb, sigEla * 1_mb);
return std::make_tuple(sigProd * (1_fm * 1_fm), sigEla * (1_fm * 1_fm));
} else
throw std::runtime_error("pythia cross section init failed");
......
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