Skip to content

Commit eb9bbf1

Browse files
committed
Implement Vit comments
Implement Vit comments
1 parent 6b29ee3 commit eb9bbf1

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

PWGHF/Core/SelectorCuts.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -253,8 +253,8 @@ static const std::vector<std::string> labelsPt{};
253253
static const std::vector<std::string> labelsCutVar = {"massMin", "massMax", "cosp", "decL"};
254254

255255
// Single prong min pt selection
256-
static constexpr int NSpecies3Prong = 8; // number of species for 3-prong candidates
257-
static const float ptProngMin[NSpecies3Prong] = {0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4};
256+
static constexpr int NSpecies = 8; // number of species for 3-prong candidates
257+
static const float ptProngMin[NSpecies] = {0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4};
258258

259259
// 3-prong species labels
260260
static const std::vector<std::string> labelsPtProngMin = {"Dplus", "Lc", "Ds", "Xic", "Cd", "Ct", "Ch", "Ca"};

PWGHF/TableProducer/trackIndexSkimCreator.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1457,7 +1457,7 @@ struct HfTrackIndexSkimCreator {
14571457
Configurable<LabeledArray<double>> cutsDstarToD0Pi{"cutsDstarToD0Pi", {hf_cuts_presel_dstar::Cuts[0], hf_cuts_presel_dstar::NBinsPt, hf_cuts_presel_dstar::NCutVars, hf_cuts_presel_dstar::labelsPt, hf_cuts_presel_dstar::labelsCutVar}, "D*+->D0pi selections per pT bin"};
14581458

14591459
// Species-differential track min pT selection for 3-prong candidates
1460-
Configurable<LabeledArray<float>> ptProngMin3Prong{"ptProngMin3Prong", {hf_cuts_presel_3prong::ptProngMin, hf_cuts_presel_3prong::NSpecies3Prong, 1, hf_cuts_presel_3prong::labelsPtProngMin, hf_cuts_presel_3prong::labelsMinPt}, "Min pT selection for prongs of 3-prong candidates in GeV/c"};
1460+
Configurable<LabeledArray<float>> ptProngMin3Prong{"ptProngMin3Prong", {hf_cuts_presel_3prong::ptProngMin, hf_cuts_presel_3prong::NSpecies, 1, hf_cuts_presel_3prong::labelsPtProngMin, hf_cuts_presel_3prong::labelsMinPt}, "Min pT selection for prongs of 3-prong candidates in GeV/c"};
14611461

14621462
// proton PID selections for Lc and Xic
14631463
Configurable<bool> applyProtonPidForLcToPKPi{"applyProtonPidForLcToPKPi", false, "Apply proton PID for Lc->pKpi"};

0 commit comments

Comments
 (0)