From 826bff8918917bc00d3372dd123ddc9f2c13fd54 Mon Sep 17 00:00:00 2001 From: wiechula Date: Wed, 16 Oct 2024 09:13:55 +0200 Subject: [PATCH] Fix conversetion of fixed point to float --- Detectors/TPC/calibration/macro/prepareCMFiles.C | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Detectors/TPC/calibration/macro/prepareCMFiles.C b/Detectors/TPC/calibration/macro/prepareCMFiles.C index dc14bc61aa793..f469dc48cf2d5 100644 --- a/Detectors/TPC/calibration/macro/prepareCMFiles.C +++ b/Detectors/TPC/calibration/macro/prepareCMFiles.C @@ -147,7 +147,7 @@ void prepareCMFiles(const std::string_view pulserFile, std::string outputDir = " const auto outFileFloatRoot = (outputDir + "/commonMode_K_values_float.root"); writeValues(outFileFloatTxt, commonModeKValuesFloat, onlyFilled); - getCalPad(outFileFloatTxt, outFileFloatRoot, "CMkValues"); + getCalPad<0>(outFileFloatTxt, outFileFloatRoot, "CMkValues"); // ===| k-Values limited precision 2I6F |=== const auto outFileTxt = (outputDir + "/commonMode_K_values.txt");