From 90fa106d15d7512995b22188d18d2e4162927fa9 Mon Sep 17 00:00:00 2001 From: David Date: Thu, 18 Apr 2024 11:20:09 +0200 Subject: [PATCH] Small clean up --- utilities/io_tools/conversion_tools.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/utilities/io_tools/conversion_tools.py b/utilities/io_tools/conversion_tools.py index 61790caa7..95667c63d 100644 --- a/utilities/io_tools/conversion_tools.py +++ b/utilities/io_tools/conversion_tools.py @@ -116,9 +116,9 @@ def fitresult_pois_to_hist(infile, result=None, poi_types = ["mu", "pmaskedexp", axes_names = [a.name for a in axes] data = combinetf_input.select_pois(df, axes_names, base_processes=proc, flow=True) - print("-----> Poi", poi_type) - print(data["value"].values) - print("Scale", scale) + logger.debug(f"-----> Poi {poi_type}") + logger.debug(f"value = {data["value"].values}") + logger.debug(f"Scale = {scale}") values = np.reshape(data["value"].values/channel_scale, shape) variances = np.reshape( (data["err_total"].values/channel_scale)**2, shape)