Skip to content
Snippets Groups Projects

fix: allow JB fits to fail

Merged Wouter Deconinck requested to merge allow-jb-fit-failure into master
1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
@@ -180,7 +180,7 @@ int dis_electrons(const std::string& config_name)
@@ -180,7 +180,7 @@ int dis_electrons(const std::string& config_name)
f_Q2_jb_res->Parameter(1), f_Q2_jb_res->Error(1));Q2
f_Q2_jb_res->Parameter(1), f_Q2_jb_res->Error(1));Q2
} else {
} else {
fmt::print("Q2 JB fit failed (FIXME: allowed to fail)");
fmt::print("Q2 JB fit failed (FIXME: allowed to fail)");
return 0; //FIXME 1;
//return 1;
}
}
if (f_Q2_da_res == 0) {
if (f_Q2_da_res == 0) {
fmt::print(" - DA: {} +/- {}\n",
fmt::print(" - DA: {} +/- {}\n",
@@ -216,7 +216,7 @@ int dis_electrons(const std::string& config_name)
@@ -216,7 +216,7 @@ int dis_electrons(const std::string& config_name)
f_x_jb_res->Parameter(1), f_x_jb_res->Error(1));
f_x_jb_res->Parameter(1), f_x_jb_res->Error(1));
} else {
} else {
fmt::print("x JB fit failed (FIXME: allowed to fail)");
fmt::print("x JB fit failed (FIXME: allowed to fail)");
return 0; //FIXME 1;
//return 1;
}
}
if (f_x_da_res == 0) {
if (f_x_da_res == 0) {
fmt::print(" - DA: {} +/- {}\n",
fmt::print(" - DA: {} +/- {}\n",
Loading