|
16 | 16 | /// |
17 | 17 | /// \author Mingze li <mingze.li@cern.ch>, CCNU/UniTo |
18 | 18 |
|
| 19 | +#include "PWGHF/Core/CentralityEstimation.h" |
19 | 20 | #include "PWGHF/Core/DecayChannels.h" |
20 | 21 | #include "PWGHF/D2H/Utils/utilsFlow.h" |
21 | | -#include "PWGHF/Core/CentralityEstimation.h" |
22 | 22 | #include "PWGHF/DataModel/CandidateReconstructionTables.h" |
23 | 23 | #include "PWGHF/DataModel/CandidateSelectionTables.h" |
24 | 24 |
|
@@ -82,7 +82,7 @@ DECLARE_SOA_COLUMN(TimeStamp, timeStamp, int64_t); |
82 | 82 | // Tracks |
83 | 83 | DECLARE_SOA_COLUMN(MinAbsEtaTrack, MinabsEtaTrack, float); |
84 | 84 | DECLARE_SOA_COLUMN(MinNumItsCls, minNumItsCls, int); |
85 | | -DECLARE_SOA_COLUMN(MinNumTpcCls, minNumTpcCls, int); |
| 85 | +DECLARE_SOA_COLUMN(MinNumTpcCls, minNumTpcCls, int); |
86 | 86 | } // namespace mixing_dstar |
87 | 87 |
|
88 | 88 | DECLARE_SOA_TABLE(HfCandDstMix, "AOD", "HFCANDDSTMIX", |
@@ -127,7 +127,6 @@ struct HfTaskMixingDstarCandTreeCreator { |
127 | 127 | Configurable<int> centEstimator{"centEstimator", 2, "Centrality estimator ((None: 0, FT0C: 2, FT0M: 3))"}; |
128 | 128 | Configurable<int> occEstimator{"occEstimator", 2, "If enabled, replace number of PV contributors with occupancy estimation (0: don't use, 1: ITS, 2: FT0C)"}; |
129 | 129 |
|
130 | | - |
131 | 130 | using CollsWithQVecs = soa::Join<aod::Collisions, aod::EvSels, aod::QvectorFT0Cs, aod::QvectorFT0As, aod::QvectorFT0Ms, aod::QvectorFV0As, aod::QvectorBPoss, aod::QvectorBNegs, aod::QvectorBTots, aod::CentFT0Ms, aod::CentFT0Cs>; |
132 | 131 | using TracksWithExtra = soa::Join<aod::Tracks, aod::TracksExtra>; |
133 | 132 | using CandDstarWSelFlag = soa::Join<aod::HfCandDstars, aod::HfSelDstarToD0Pi>; |
@@ -235,7 +234,7 @@ struct HfTaskMixingDstarCandTreeCreator { |
235 | 234 | auto groupedDstarCandidates = dstarCandidates.sliceBy(dstarWithMlPerCollision, thisCollId); |
236 | 235 | for (const auto& dstarCandidate : groupedDstarCandidates) { |
237 | 236 | fillCandidateTable(collision, dstarCandidate, tracks, bcWithTimeStamps); |
238 | | - } |
| 237 | + } |
239 | 238 | } |
240 | 239 | } |
241 | 240 | PROCESS_SWITCH(HfTaskMixingDstarCandTreeCreator, processData, "Process data", true); |
|
0 commit comments