We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd41859 commit c1ea1f5Copy full SHA for c1ea1f5
PWGDQ/Tasks/qaMatching.cxx
@@ -42,6 +42,7 @@
42
#include <unordered_set>
43
#include <utility>
44
#include <vector>
45
+#include <cinttypes>
46
47
using namespace o2;
48
using namespace o2::framework;
@@ -2381,7 +2382,7 @@ struct qaMatching {
2381
2382
if (fQaMatchingAodDebug > 0 && goodMatchFound && isTrueMatch) {
2383
LOGF(info,
2384
"[good&true] mchId=%lld trackType=%d p=%.3f pt=%.3f eta=%.3f phi=%.3f",
- static_cast<long long>(mchTrack.globalIndex()),
2385
+ static_cast<int64_t>(mchTrack.globalIndex()),
2386
static_cast<int>(mchTrack.trackType()),
2387
mchTrack.p(),
2388
mchTrack.pt(),
0 commit comments