Skip to content

Commit 5c71f57

Browse files
committed
Fix typo (missing fmt argument) in the NoiseMap
1 parent 7c5b6e7 commit 5c71f57

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

DataFormats/Detectors/ITSMFT/common/include/DataFormatsITSMFT/NoiseMap.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ class NoiseMap
106106
if (relErr > 0) {
107107
minFiredForErr = relErr * relErr - 1. / n;
108108
if (minFiredForErr <= 0.f) {
109-
LOGP(alarm, "Noise threshold {} with relative error {} is not reachable with {} ROFs processed, mask all permanently fired pixels", t, relErr);
109+
LOGP(alarm, "Noise threshold {} with relative error {} is not reachable with {} ROFs processed, mask all permanently fired pixels", t, relErr, n);
110110
minFiredForErr = n;
111111
} else {
112112
minFiredForErr = 1. / minFiredForErr;

Detectors/ITSMFT/ITS/calibration/src/NoiseCalibrator.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
#include "ITSCalibration/NoiseCalibrator.h"
1515

16-
#include "FairLogger.h"
16+
#include "Framework/Logger.h"
1717
#include "TFile.h"
1818
#include "DataFormatsITSMFT/ClusterPattern.h"
1919
#include "DataFormatsITSMFT/CompCluster.h"

0 commit comments

Comments
 (0)