Skip to content

Commit bf3fc33

Browse files
author
Niveditha Ramasubramanian
committed
mega linter issue
1 parent 7476fb1 commit bf3fc33

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

PWGDQ/Tasks/qaMatching.cxx

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,15 @@
3131
#include <Math/ProbFunc.h>
3232

3333
#include <algorithm>
34+
#include <cinttypes>
3435
#include <iostream>
3536
#include <limits>
3637
#include <map>
3738
#include <memory>
3839
#include <string>
3940
#include <tuple>
4041
#include <unordered_map>
42+
#include <unordered_set>
4143
#include <utility>
4244
#include <vector>
4345

@@ -211,8 +213,13 @@ struct qaMatching {
211213
/// Variables for histograms configuration
212214
Configurable<int> fNCandidatesMax{"cfgNCandidatesMax", 5, "Number of matching candidates stored for each muon track"};
213215
Configurable<int> fMftTrackMultiplicityMax{"cfgMftTrackMultiplicityMax", 1000, "Maximum number of MFT tracks per collision"};
216+
Configurable<int> fQaMatchingAodDebug{"cfgQaMatchingAodDebug", 0, "If >0, print AO2D filling debug (0=off, N=max collisions)"};
217+
218+
<<<<<<< HEAD
219+
=======
214220
double mBzAtMftCenter{0};
215221

222+
>>>>>>> 597070af5 (mega linter issue)
216223
o2::globaltracking::MatchGlobalFwd mExtrap;
217224

218225
using MatchingFunc_t = std::function<std::tuple<double, int>(const o2::dataformats::GlobalFwdTrack& mchtrack, const o2::track::TrackParCovFwd& mfttrack)>;
@@ -2891,8 +2898,8 @@ struct qaMatching {
28912898
static_cast<float>(collision.posZ()));
28922899

28932900
if (fQaMatchingAodDebug > 0 && debugCounter < fQaMatchingAodDebug) {
2894-
LOGF(info, "[AO2D] reducedEvent=%lld mftMult=%d",
2895-
static_cast<long long>(reducedEventId),
2901+
LOGF(info, "[AO2D] reducedEvent=%" PRId64 " mftMult=%d",
2902+
reducedEventId,
28962903
static_cast<int>(mftMultiplicity));
28972904
debugCounter += 1;
28982905
}

0 commit comments

Comments
 (0)