Skip to content

Commit 65f0edb

Browse files
Merge pull request #8 from alibuild/alibot-cleanup-10063
[PWGHF] Please consider the following formatting changes to AliceO2Group#10063
2 parents 98473c5 + b329854 commit 65f0edb

File tree

2 files changed

+12
-13
lines changed

2 files changed

+12
-13
lines changed

PWGHF/TableProducer/candidateCreator3Prong.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -830,7 +830,7 @@ struct HfCandidateCreator3ProngExpressions {
830830
createXic = option.defaultValue.get<bool>();
831831
} else if (option.name.compare("createDstarToPiKPiBkg") == 0) {
832832
createDstarToPiKPiBkg = option.defaultValue.get<bool>();
833-
}
833+
}
834834
}
835835
break;
836836
}

PWGHF/TableProducer/treeCreatorDplusToPiKPi.cxx

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -80,12 +80,12 @@ DECLARE_SOA_COLUMN(Ct, ct, float);
8080
DECLARE_SOA_COLUMN(IsEventReject, isEventReject, int); //! Event rejection flag
8181
DECLARE_SOA_COLUMN(RunNumber, runNumber, int); //! Run number
8282
// ML scores
83-
DECLARE_SOA_COLUMN(MlScore0, mlScore0, float); //! ML score of the first configured index
84-
DECLARE_SOA_COLUMN(MlScore1, mlScore1, float); //! ML score of the second configured index
83+
DECLARE_SOA_COLUMN(MlScore0, mlScore0, float); //! ML score of the first configured index
84+
DECLARE_SOA_COLUMN(MlScore1, mlScore1, float); //! ML score of the second configured index
8585
} // namespace full
8686
DECLARE_SOA_TABLE(HfCandDpMls, "AOD", "HFCANDDPML",
87-
full::MlScore0,
88-
full::MlScore1)
87+
full::MlScore0,
88+
full::MlScore1)
8989

9090
DECLARE_SOA_TABLE(HfCandDpLites, "AOD", "HFCANDDPLITE",
9191
hf_cand::Chi2PCA,
@@ -293,18 +293,17 @@ struct HfTreeCreatorDplusToPiKPi {
293293
originMc = candidate.originMcRec();
294294
channelMc = candidate.flagMcDecayChanRec();
295295
}
296-
296+
297297
std::vector<float> outputMl = {-999., -999.};
298298
if constexpr (doMl) {
299299
for (unsigned int iclass = 0; iclass < classMl->size(); iclass++) {
300300
outputMl[iclass] = candidate.mlProbDplusToPiKPi()[classMl->at(iclass)];
301301
}
302302
rowCandidateMl(
303303
outputMl[0],
304-
outputMl[1]
305-
);
304+
outputMl[1]);
306305
}
307-
306+
308307
auto prong0 = candidate.template prong0_as<TracksWPid>();
309308
auto prong1 = candidate.template prong1_as<TracksWPid>();
310309
auto prong2 = candidate.template prong2_as<TracksWPid>();
@@ -355,7 +354,7 @@ struct HfTreeCreatorDplusToPiKPi {
355354
flagMc,
356355
originMc,
357356
channelMc);
358-
} else {
357+
} else {
359358
rowCandidateFull(
360359
candidate.collision().bcId(),
361360
candidate.collision().numContrib(),
@@ -436,8 +435,8 @@ struct HfTreeCreatorDplusToPiKPi {
436435
flagMc,
437436
originMc,
438437
channelMc);
439-
}
440438
}
439+
}
441440

442441
void processData(aod::Collisions const& collisions,
443442
soa::Filtered<soa::Join<aod::HfCand3Prong, aod::HfSelDplusToPiKPi>> const& candidates,
@@ -467,7 +466,7 @@ struct HfTreeCreatorDplusToPiKPi {
467466
}
468467

469468
PROCESS_SWITCH(HfTreeCreatorDplusToPiKPi, processData, "Process data", true);
470-
469+
471470
void processMc(aod::Collisions const& collisions,
472471
aod::McCollisions const&,
473472
SelectedCandidatesMc const& candidates,
@@ -480,7 +479,7 @@ struct HfTreeCreatorDplusToPiKPi {
480479
for (const auto& collision : collisions) {
481480
fillEvent(collision, 0, 1);
482481
}
483-
482+
484483
// Filling candidate properties
485484
if (fillOnlySignal) {
486485
if (fillCandidateLiteTable) {

0 commit comments

Comments
 (0)