@@ -80,12 +80,12 @@ DECLARE_SOA_COLUMN(Ct, ct, float);
8080DECLARE_SOA_COLUMN (IsEventReject, isEventReject, int ); // ! Event rejection flag
8181DECLARE_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
8686DECLARE_SOA_TABLE (HfCandDpMls, " AOD" , " HFCANDDPML" ,
87- full::MlScore0,
88- full::MlScore1)
87+ full::MlScore0,
88+ full::MlScore1)
8989
9090DECLARE_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