Skip to content
Snippets Groups Projects
Commit 4b62f9b4 authored by Klaus Rabbertz's avatar Klaus Rabbertz
Browse files

Commented trial with 100% max uncertainty

parent f3433fff
Branches
Tags 2823
No related merge requests found
......@@ -441,7 +441,10 @@ namespace fastNLOTools {
iss >> xs;
iss >> dxs;
if ( fabs(xs) > DBL_MIN ) {
// Is negative, if NLO_only or NNLO_only x section at production was < 0; keep this as additional information.
Uncertainty.push_back(dxs/xs);
// Only allow positive numbers with maximum value of 1, i.e. = 100% uncertainty maximum
// Uncertainty.push_back(std::min(fabs(dxs/xs),1.0));
} else {
Uncertainty.push_back(0.);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment