diff --git a/Analysis/Tasks/PWGHF/HFJpsiCandidateSelector.cxx b/Analysis/Tasks/PWGHF/HFJpsiCandidateSelector.cxx index 53ed04e1942f4..77348962ef665 100644 --- a/Analysis/Tasks/PWGHF/HFJpsiCandidateSelector.cxx +++ b/Analysis/Tasks/PWGHF/HFJpsiCandidateSelector.cxx @@ -107,7 +107,7 @@ struct HFJpsiCandidateSelector { Configurable d_pidRICHMinpT{"d_pidRICHMinpT", 0.15, "Lower bound of track pT for RICH PID"}; Configurable d_pidRICHMaxpT{"d_pidRICHMaxpT", 10., "Upper bound of track pT for RICH PID"}; Configurable d_nSigmaRICH{"d_nSigmaRICH", 3., "Nsigma cut on RICH only"}; - Configurable nSigmaRICHCombinedTOF{"nSigmaRICHCombinedTOF", 5., "Nsigma cut on RICH combined with TOF"}; + Configurable d_nSigmaRICHCombinedTOF{"d_nSigmaRICHCombinedTOF", 5., "Nsigma cut on RICH combined with TOF"}; // topological cuts Configurable> pTBins{"pTBins", std::vector{hf_cuts_jpsi_toee::pTBins_v}, "pT bin limits"}; Configurable> cuts{"Jpsi_to_ee_cuts", {hf_cuts_jpsi_toee::cuts[0], npTBins, nCutVars, pTBinLabels, cutVarLabels}, "Jpsi candidate selection per pT bin"}; @@ -179,7 +179,7 @@ struct HFJpsiCandidateSelector { selectorElectron.setRangeNSigmaTOFCondTPC(-d_nSigmaTOFCombined, d_nSigmaTOFCombined); selectorElectron.setRangePtRICH(d_pidRICHMinpT, d_pidRICHMaxpT); selectorElectron.setRangeNSigmaRICH(-d_nSigmaRICH, d_nSigmaRICH); - selectorElectron.setRangeNSigmaRICHCondTOF(-nSigmaRICHCombinedTOF, nSigmaRICHCombinedTOF); + selectorElectron.setRangeNSigmaRICHCondTOF(-d_nSigmaRICHCombinedTOF, d_nSigmaRICHCombinedTOF); TrackSelectorPID selectorMuon(kMuonMinus);