From b03fd1d5de9718e8706ba204bf7d5a632e0f26f0 Mon Sep 17 00:00:00 2001 From: ALICE Action Bot Date: Wed, 17 Jun 2026 15:24:10 +0000 Subject: [PATCH] Please consider the following formatting changes --- PWGHF/D2H/Tasks/taskMixingDstarCandTreeCreator.cxx | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/PWGHF/D2H/Tasks/taskMixingDstarCandTreeCreator.cxx b/PWGHF/D2H/Tasks/taskMixingDstarCandTreeCreator.cxx index 4d11564b356..6421fd0869c 100644 --- a/PWGHF/D2H/Tasks/taskMixingDstarCandTreeCreator.cxx +++ b/PWGHF/D2H/Tasks/taskMixingDstarCandTreeCreator.cxx @@ -16,9 +16,9 @@ /// /// \author Mingze li , CCNU/UniTo +#include "PWGHF/Core/CentralityEstimation.h" #include "PWGHF/Core/DecayChannels.h" #include "PWGHF/D2H/Utils/utilsFlow.h" -#include "PWGHF/Core/CentralityEstimation.h" #include "PWGHF/DataModel/CandidateReconstructionTables.h" #include "PWGHF/DataModel/CandidateSelectionTables.h" @@ -82,7 +82,7 @@ DECLARE_SOA_COLUMN(TimeStamp, timeStamp, int64_t); // Tracks DECLARE_SOA_COLUMN(MinAbsEtaTrack, MinabsEtaTrack, float); DECLARE_SOA_COLUMN(MinNumItsCls, minNumItsCls, int); -DECLARE_SOA_COLUMN(MinNumTpcCls, minNumTpcCls, int); +DECLARE_SOA_COLUMN(MinNumTpcCls, minNumTpcCls, int); } // namespace mixing_dstar DECLARE_SOA_TABLE(HfCandDstMix, "AOD", "HFCANDDSTMIX", @@ -127,7 +127,6 @@ struct HfTaskMixingDstarCandTreeCreator { Configurable centEstimator{"centEstimator", 2, "Centrality estimator ((None: 0, FT0C: 2, FT0M: 3))"}; Configurable occEstimator{"occEstimator", 2, "If enabled, replace number of PV contributors with occupancy estimation (0: don't use, 1: ITS, 2: FT0C)"}; - using CollsWithQVecs = soa::Join; using TracksWithExtra = soa::Join; using CandDstarWSelFlag = soa::Join; @@ -235,7 +234,7 @@ struct HfTaskMixingDstarCandTreeCreator { auto groupedDstarCandidates = dstarCandidates.sliceBy(dstarWithMlPerCollision, thisCollId); for (const auto& dstarCandidate : groupedDstarCandidates) { fillCandidateTable(collision, dstarCandidate, tracks, bcWithTimeStamps); - } + } } } PROCESS_SWITCH(HfTaskMixingDstarCandTreeCreator, processData, "Process data", true);