@@ -186,7 +186,6 @@ struct HfCorrelatorDplusHadrons {
186186
187187 HfHelper hfHelper;
188188 SliceCache cache;
189- BinningType corrBinning{{binsZVtx, binsMultiplicity}, true };
190189
191190 // Event Mixing for the Data Mode
192191 using SelCollisionsWithDplus = soa::Filtered<soa::Join<aod::Collisions, aod::Mults, aod::EvSels, aod::DmesonSelection>>;
@@ -216,6 +215,7 @@ struct HfCorrelatorDplusHadrons {
216215 ConfigurableAxis binsPoolBin{" binsPoolBin" , {9 , 0 ., 9 .}, " PoolBin" };
217216 ConfigurableAxis binsMultFT0M{" binsMultFT0M" , {600 , 0 ., 6000 .}, " Multiplicity as FT0M signal amplitude" };
218217 ConfigurableAxis binsMassD{" binsMassD" , {200 , 1.7 , 2.10 }, " inv. mass (#pi^{+}K^{-}#pi^{+}) (GeV/#it{c}^{2})" };
218+ BinningType corrBinning{{binsZVtx, binsMultiplicity}, true };
219219 HistogramRegistry registry{" registry" , {}, OutputObjHandlingPolicy::AnalysisObject};
220220
221221 void init (InitContext&)
@@ -559,7 +559,7 @@ struct HfCorrelatorDplusHadrons {
559559 RecoDecay::getDaughters (particle1, &listDaughters, arrDaughDplusPDG, 2 );
560560 int counterDaughters = 0 ;
561561 int nDplusDaughters = 3 ;
562- if (listDaughters.size () == nDplusDaughters) {
562+ if (listDaughters.size () == static_cast < size_t >( nDplusDaughters) ) {
563563 for (const auto & dauIdx : listDaughters) {
564564 auto daughI = mcParticles.rawIteratorAt (dauIdx - mcParticles.offset ());
565565 counterDaughters += 1 ;
0 commit comments