@@ -356,11 +356,13 @@ static const std::vector<std::string> labelsCutVar = {"m", "DCA", "cos theta*",
356356
357357namespace hf_cuts_dstar_to_d0_pi
358358{
359- static constexpr int nBinsPt = 23 ;
359+ static constexpr int nBinsPt = 25 ;
360360static constexpr int nCutVars = 8 ;
361361// default values for the pT bin edges (can be used to configure histogram axis)
362362// offset by 1 from the bin numbers in cuts array
363363constexpr double binsPt[nBinsPt + 1 ] = {
364+ 0 .,
365+ 0.5 ,
364366 1.0 ,
365367 1.5 ,
366368 2.0 ,
@@ -411,35 +413,39 @@ static const std::vector<std::string> labelsPt = {
411413 " pT bin 19" ,
412414 " pT bin 20" ,
413415 " pT bin 21" ,
414- " pT bin 22" };
416+ " pT bin 22" ,
417+ " pT bin 23" ,
418+ " pT bin 24" };
415419
416420// column label
417421static const std::vector<std::string> labelsCutVar = {" ptSoftPiMin" , " ptSoftPiMax" , " d0SoftPi" , " d0SoftPiNormalised" , " deltaMInvDstar" , " chi2PCA" , " d0Prong0Normalised" , " d0Prong1Normalised" };
418422
419423// default values for the cuts
420- constexpr double cuts[nBinsPt][nCutVars] = {{0.05 , 0.3 , 0.1 , 0.0 , 0.2 , 300.0 , 0.0 , 0.0 },
421- {0.05 , 0.3 , 0.1 , 0.0 , 0.2 , 300.0 , 0.0 , 0.0 },
422- {0.05 , 0.4 , 0.1 , 0.0 , 0.2 , 300.0 , 0.0 , 0.0 },
423- {0.05 , 0.4 , 0.1 , 0.0 , 0.2 , 300.0 , 0.0 , 0.0 },
424- {0.05 , 0.6 , 0.1 , 0.0 , 0.2 , 300.0 , 0.0 , 0.0 },
425- {0.05 , 0.6 , 0.1 , 0.0 , 0.2 , 300.0 , 0.0 , 0.0 },
426- {0.05 , 0.6 , 0.1 , 0.0 , 0.2 , 300.0 , 0.0 , 0.0 },
427- {0.05 , 100 , 0.1 , 0.0 , 0.2 , 300.0 , 0.0 , 0.0 },
428- {0.05 , 100 , 0.1 , 0.0 , 0.2 , 300.0 , 0.0 , 0.0 },
429- {0.05 , 100 , 0.1 , 0.0 , 0.2 , 300.0 , 0.0 , 0.0 },
430- {0.05 , 100 , 0.1 , 0.0 , 0.2 , 300.0 , 0.0 , 0.0 },
431- {0.05 , 100 , 0.1 , 0.0 , 0.2 , 300.0 , 0.0 , 0.0 },
432- {0.05 , 100 , 0.1 , 0.0 , 0.2 , 300.0 , 0.0 , 0.0 },
433- {0.05 , 100 , 0.1 , 0.0 , 0.2 , 300.0 , 0.0 , 0.0 },
434- {0.05 , 100 , 0.1 , 0.0 , 0.2 , 300.0 , 0.0 , 0.0 },
435- {0.05 , 100 , 0.1 , 0.0 , 0.2 , 300.0 , 0.0 , 0.0 },
436- {0.05 , 100 , 0.1 , 0.0 , 0.2 , 300.0 , 0.0 , 0.0 },
437- {0.05 , 100 , 0.1 , 0.0 , 0.2 , 300.0 , 0.0 , 0.0 },
438- {0.05 , 100 , 0.1 , 0.0 , 0.2 , 300.0 , 0.0 , 0.0 },
439- {0.05 , 100 , 0.1 , 0.0 , 0.2 , 300.0 , 0.0 , 0.0 },
440- {0.05 , 100 , 0.1 , 0.0 , 0.2 , 300.0 , 0.0 , 0.0 },
441- {0.05 , 100 , 0.1 , 0.0 , 0.2 , 300.0 , 0.0 , 0.0 },
442- {0.05 , 100 , 0.1 , 0.0 , 0.2 , 300.0 , 0.0 , 0.0 }};
424+ constexpr double cuts[nBinsPt][nCutVars] = {{0.05 , 0.2 , 0.1 , 1000.0 , 0.2 , 300.0 , 0.0 , 0.0 },
425+ {0.05 , 0.2 , 0.1 , 1000.0 , 0.2 , 300.0 , 0.0 , 0.0 },
426+ {0.05 , 0.3 , 0.1 , 1000.0 , 0.2 , 300.0 , 0.0 , 0.0 },
427+ {0.05 , 0.3 , 0.1 , 1000.0 , 0.2 , 300.0 , 0.0 , 0.0 },
428+ {0.05 , 0.4 , 0.1 , 1000.0 , 0.2 , 300.0 , 0.0 , 0.0 },
429+ {0.05 , 0.4 , 0.1 , 1000.0 , 0.2 , 300.0 , 0.0 , 0.0 },
430+ {0.05 , 0.6 , 0.1 , 1000.0 , 0.2 , 300.0 , 0.0 , 0.0 },
431+ {0.05 , 0.6 , 0.1 , 1000.0 , 0.2 , 300.0 , 0.0 , 0.0 },
432+ {0.05 , 0.6 , 0.1 , 1000.0 , 0.2 , 300.0 , 0.0 , 0.0 },
433+ {0.05 , 100 , 0.1 , 1000.0 , 0.2 , 300.0 , 0.0 , 0.0 },
434+ {0.05 , 100 , 0.1 , 1000.0 , 0.2 , 300.0 , 0.0 , 0.0 },
435+ {0.05 , 100 , 0.1 , 1000.0 , 0.2 , 300.0 , 0.0 , 0.0 },
436+ {0.05 , 100 , 0.1 , 1000.0 , 0.2 , 300.0 , 0.0 , 0.0 },
437+ {0.05 , 100 , 0.1 , 1000.0 , 0.2 , 300.0 , 0.0 , 0.0 },
438+ {0.05 , 100 , 0.1 , 1000.0 , 0.2 , 300.0 , 0.0 , 0.0 },
439+ {0.05 , 100 , 0.1 , 1000.0 , 0.2 , 300.0 , 0.0 , 0.0 },
440+ {0.05 , 100 , 0.1 , 1000.0 , 0.2 , 300.0 , 0.0 , 0.0 },
441+ {0.05 , 100 , 0.1 , 1000.0 , 0.2 , 300.0 , 0.0 , 0.0 },
442+ {0.05 , 100 , 0.1 , 1000.0 , 0.2 , 300.0 , 0.0 , 0.0 },
443+ {0.05 , 100 , 0.1 , 1000.0 , 0.2 , 300.0 , 0.0 , 0.0 },
444+ {0.05 , 100 , 0.1 , 1000.0 , 0.2 , 300.0 , 0.0 , 0.0 },
445+ {0.05 , 100 , 0.1 , 1000.0 , 0.2 , 300.0 , 0.0 , 0.0 },
446+ {0.05 , 100 , 0.1 , 1000.0 , 0.2 , 300.0 , 0.0 , 0.0 },
447+ {0.05 , 100 , 0.1 , 1000.0 , 0.2 , 300.0 , 0.0 , 0.0 },
448+ {0.05 , 100 , 0.1 , 1000.0 , 0.2 , 300.0 , 0.0 , 0.0 }};
443449} // namespace hf_cuts_dstar_to_d0_pi
444450
445451namespace hf_cuts_lc_to_p_k_pi
0 commit comments