Skip to content

Commit 83e87b9

Browse files
committed
Please consider the following formatting changes
1 parent 2929459 commit 83e87b9

1 file changed

Lines changed: 15 additions & 14 deletions

File tree

PWGHF/HFC/TableProducer/correlatorXicHadrons.cxx

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -102,12 +102,13 @@ enum class PDGChargeScale : size_t {
102102
Scale = 3u
103103
};
104104

105-
namespace CorrParticleType {
106-
enum Type : int8_t {
107-
PhysicalPrimary = 0,
108-
IdentifiedParticle = 1,
109-
V0 = 2
110-
};
105+
namespace CorrParticleType
106+
{
107+
enum Type : int8_t {
108+
PhysicalPrimary = 0,
109+
IdentifiedParticle = 1,
110+
V0 = 2
111+
};
111112
}
112113
// ============================================================================
113114
// HELPER FUNCTIONS
@@ -203,8 +204,8 @@ struct HfCorrelatorXicHadronsSelection {
203204
if (selNoSameBunchPileUpColl) {
204205
isNosameBunchPileUp = static_cast<bool>(collision.selection_bit(o2::aod::evsel::kNoSameBunchPileup));
205206
}
206-
if (isCandFound && isSel8 && isNosameBunchPileUp){
207-
candSel(true);
207+
if (isCandFound && isSel8 && isNosameBunchPileUp) {
208+
candSel(true);
208209
}
209210
}
210211

@@ -667,10 +668,10 @@ struct HfCorrelatorXicHadrons {
667668

668669
template <bool IsMcRec, bool IsXicPlus, typename CollisionType, typename V0, typename TrackType, typename CandsXics>
669670
void doSameEventWithV0(CollisionType const& collision,
670-
V0 const& v0s,
671-
TrackType const& tracks,
672-
CandsXics const& candidates,
673-
aod::McParticles const* mcParticles = nullptr)
671+
V0 const& v0s,
672+
TrackType const& tracks,
673+
CandsXics const& candidates,
674+
aod::McParticles const* mcParticles = nullptr)
674675
{
675676
// Data-driven efficiency calculation for protons using Lambda
676677
if (cfgV0.cfgCalDataDrivenEffPr) {
@@ -899,8 +900,8 @@ struct HfCorrelatorXicHadrons {
899900

900901
// Correlate Xic with all Lambda V0 in the same event
901902
for (const auto& v0 : v0s) {
902-
auto const& trackV0Pos = v0.template posTrack_as<TrackType>();
903-
auto const& trackV0Neg = v0.template negTrack_as<TrackType>();
903+
auto const& trackV0Pos = v0.template posTrack_as<TrackType>();
904+
auto const& trackV0Neg = v0.template negTrack_as<TrackType>();
904905

905906
if (cfgV0.cfgIsCorrCollMatchV0 && ((v0.collisionId() != trackV0Pos.collisionId()) || (v0.collisionId() != trackV0Neg.collisionId()))) {
906907
continue;

0 commit comments

Comments
 (0)