Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Analysis/Tasks/PWGHF/HFJpsiCandidateSelector.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ struct HFJpsiCandidateSelector {
Configurable<double> d_pidRICHMinpT{"d_pidRICHMinpT", 0.15, "Lower bound of track pT for RICH PID"};
Configurable<double> d_pidRICHMaxpT{"d_pidRICHMaxpT", 10., "Upper bound of track pT for RICH PID"};
Configurable<double> d_nSigmaRICH{"d_nSigmaRICH", 3., "Nsigma cut on RICH only"};
Configurable<double> nSigmaRICHCombinedTOF{"nSigmaRICHCombinedTOF", 5., "Nsigma cut on RICH combined with TOF"};
Comment thread
ginnocen marked this conversation as resolved.
Outdated
Configurable<double> d_nSigmaRICHCombinedTOF{"d_nSigmaRICHCombinedTOF", 5., "Nsigma cut on RICH combined with TOF"};
// topological cuts
Configurable<std::vector<double>> pTBins{"pTBins", std::vector<double>{hf_cuts_jpsi_toee::pTBins_v}, "pT bin limits"};
Configurable<LabeledArray<double>> cuts{"Jpsi_to_ee_cuts", {hf_cuts_jpsi_toee::cuts[0], npTBins, nCutVars, pTBinLabels, cutVarLabels}, "Jpsi candidate selection per pT bin"};
Expand Down Expand Up @@ -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);

Expand Down