Skip to content

Commit 5a56a4a

Browse files
author
Prottay Das
committed
corrected the include headers
1 parent eec1c66 commit 5a56a4a

1 file changed

Lines changed: 11 additions & 13 deletions

File tree

PWGLF/TableProducer/Resonances/phiflow.cxx

Lines changed: 11 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
#include "Common/DataModel/PIDResponseTPC.h"
2828
#include "Common/DataModel/TrackSelectionTables.h"
2929

30-
#include <CommonConstants/PhysicsConstants.h>
3130
#include <Framework/AnalysisDataModel.h>
3231
#include <Framework/AnalysisHelpers.h>
3332
#include <Framework/AnalysisTask.h>
@@ -41,7 +40,6 @@
4140

4241
#include <Math/Vector4D.h> // IWYU pragma: keep (do not replace with Math/Vector4Dfwd.h)
4342

44-
#include <algorithm>
4543
#include <cmath>
4644
#include <cstdint>
4745
#include <string>
@@ -428,15 +426,15 @@ struct phiflow {
428426

429427
histos.fill(HIST("hEvtSelInfo"), 1.5);
430428

431-
if (!((!rctCut.requireRCTFlagChecker || rctChecker(collision)) &&
432-
collision.selection_bit(aod::evsel::kNoSameBunchPileup) &&
433-
collision.selection_bit(aod::evsel::kIsGoodZvtxFT0vsPV) &&
434-
(!useNoCollInTimeRangeStandard ||
435-
collision.selection_bit(o2::aod::evsel::kNoCollInTimeRangeStandard)) &&
436-
collision.sel8() &&
437-
(!useGoodITSLayersAll ||
438-
collision.selection_bit(o2::aod::evsel::kIsGoodITSLayersAll)) &&
439-
occupancy < cfgCutOccupancy)) {
429+
if ((rctCut.requireRCTFlagChecker && !rctChecker(collision)) ||
430+
!collision.selection_bit(aod::evsel::kNoSameBunchPileup) ||
431+
!collision.selection_bit(aod::evsel::kIsGoodZvtxFT0vsPV) ||
432+
(useNoCollInTimeRangeStandard &&
433+
!collision.selection_bit(o2::aod::evsel::kNoCollInTimeRangeStandard)) ||
434+
!collision.sel8() ||
435+
(useGoodITSLayersAll &&
436+
!collision.selection_bit(o2::aod::evsel::kIsGoodITSLayersAll)) ||
437+
occupancy >= cfgCutOccupancy) {
440438
return;
441439
}
442440

@@ -490,7 +488,7 @@ struct phiflow {
490488
track1.py(),
491489
track1.pz(),
492490
+1,
493-
static_cast<int64_t>(track1.globalIndex()),
491+
track1.globalIndex(),
494492
mask1});
495493
}
496494

@@ -527,7 +525,7 @@ struct phiflow {
527525
track2.py(),
528526
track2.pz(),
529527
-1,
530-
static_cast<int64_t>(track2.globalIndex()),
528+
track2.globalIndex(),
531529
mask2});
532530
}
533531

0 commit comments

Comments
 (0)