Skip to content

Commit 69b7b34

Browse files
committed
fixedlinterErrors
1 parent a5ebba1 commit 69b7b34

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

PWGCF/EbyEFluctuations/Tasks/FactorialMomentsTask.cxx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
#include "ReconstructionDataFormats/Track.h"
3333

3434
#include <unordered_set>
35+
#include <vector>
3536

3637
using namespace o2;
3738
using namespace o2::framework;
@@ -328,10 +329,7 @@ struct FactorialMomentsTask {
328329
fqEvent = {{{{{0, 0, 0, 0, 0, 0}}}}};
329330
binConEvent = {{{0, 0, 0, 0, 0}}};
330331
for (auto const& track : tracks) {
331-
if (track.hasTPC())
332-
// if (track.hasITS())
333-
// if (track.isGlobalTrack())
334-
{
332+
if (track.hasTPC()) {
335333
histos.fill(HIST("mCollID"), track.collisionId());
336334
histos.fill(HIST("mEta"), track.eta());
337335
histos.fill(HIST("mPt"), track.pt());

0 commit comments

Comments
 (0)