We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bbe971b commit 005a54bCopy full SHA for 005a54b
madminer/fisherinformation.py
@@ -542,12 +542,12 @@ def _check_binning_stats(
542
order = np.argsort(rel_uncertainties)[::-1]
543
544
logger.info("Bins with largest statistical uncertainties on rates:")
545
- for i_bin in order:
+ for i_bin in order[:report]:
546
bin_nd = i_bin + 1
547
if n_bins_first_axis is not None:
548
bin_nd = (i_bin // n_bins_first_axis + 1, i_bin % n_bins_first_axis + 1)
549
logger.info(
550
- " Bin %s: (%.4f +/- %.4f) fb (%.4f %%)",
+ " Bin %s: (%.5f +/- %.5f) fb (%.0f %%)",
551
bin_nd,
552
1000.0 * sigma[i_bin],
553
1000.0 * sigma_uncertainties[i_bin],
0 commit comments