Skip to content

Commit 949171d

Browse files
committed
Implement requested changes from review
1 parent 2675309 commit 949171d

3 files changed

Lines changed: 12 additions & 12 deletions

File tree

PWGHF/DataModel/CandidateReconstructionTables.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1358,8 +1358,8 @@ DECLARE_SOA_COLUMN(OriginRec, originRec, int8_t);
13581358
DECLARE_SOA_COLUMN(OriginGen, originGen, int8_t);
13591359

13601360
// mapping of decay types
1361-
enum DecayType { XicToXiPiPi = 0,
1362-
XicToXiResPiToXiPiPi,
1361+
enum DecayType { XicToXiPiPi = 0, // Ξc± → Ξ∓ π± π±
1362+
XicToXiResPiToXiPiPi, // Ξc± → Ξ(1530) π± → Ξ∓ π± π±
13631363
NDecayType };
13641364
} // end of namespace hf_cand_xic_to_xi_pi_pi
13651365

PWGHF/TableProducer/candidateCreatorXicToXiPiPi.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,10 +120,10 @@ struct HfCandidateCreatorXicToXiPiPi {
120120
}
121121

122122
// fill hVertexerType histogram
123-
if ((doprocessXicplusWithDcaFitter == 1) && fillHistograms) {
123+
if (doprocessXicplusWithDcaFitter && fillHistograms) {
124124
registry.fill(HIST("hVertexerType"), aod::hf_cand::VertexerType::DCAFitter);
125125
}
126-
if ((doprocessXicplusWithKFParticle == 1) && fillHistograms) {
126+
if (doprocessXicplusWithKFParticle && fillHistograms) {
127127
registry.fill(HIST("hVertexerType"), aod::hf_cand::VertexerType::KfParticle);
128128
}
129129

PWGHF/TableProducer/candidateSelectorXicToXiPiPi.cxx

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -43,15 +43,15 @@ struct HfCandidateSelectorXicToXiPiPi {
4343
Configurable<bool> usePid{"usePid", true, "Switch for PID selection at track level"};
4444
Configurable<bool> acceptPIDNotApplicable{"acceptPIDNotApplicable", true, "Switch to accept Status::NotApplicable [(NotApplicable for one detector) and (NotApplicable or Conditional for the other)] in PID selection"};
4545
// TPC PID
46-
Configurable<double> ptPidTpcMin{"ptPidTpcMin", 0.15, "Lower bound of track pT for TPC PID"};
47-
Configurable<double> ptPidTpcMax{"ptPidTpcMax", 20., "Upper bound of track pT for TPC PID"};
48-
Configurable<double> nSigmaTpcMax{"nSigmaTpcMax", 5., "Nsigma cut on TPC only"};
49-
Configurable<double> nSigmaTpcCombinedMax{"nSigmaTpcCombinedMax", 5., "Nsigma cut on TPC combined with TOF"};
46+
Configurable<float> ptPidTpcMin{"ptPidTpcMin", 0.15, "Lower bound of track pT for TPC PID"};
47+
Configurable<float> ptPidTpcMax{"ptPidTpcMax", 20., "Upper bound of track pT for TPC PID"};
48+
Configurable<float> nSigmaTpcMax{"nSigmaTpcMax", 5., "Nsigma cut on TPC only"};
49+
Configurable<float> nSigmaTpcCombinedMax{"nSigmaTpcCombinedMax", 5., "Nsigma cut on TPC combined with TOF"};
5050
// TOF PID
51-
Configurable<double> ptPidTofMin{"ptPidTofMin", 0.15, "Lower bound of track pT for TOF PID"};
52-
Configurable<double> ptPidTofMax{"ptPidTofMax", 20., "Upper bound of track pT for TOF PID"};
53-
Configurable<double> nSigmaTofMax{"nSigmaTofMax", 5., "Nsigma cut on TOF only"};
54-
Configurable<double> nSigmaTofCombinedMax{"nSigmaTofCombinedMax", 5., "Nsigma cut on TOF combined with TPC"};
51+
Configurable<float> ptPidTofMin{"ptPidTofMin", 0.15, "Lower bound of track pT for TOF PID"};
52+
Configurable<float> ptPidTofMax{"ptPidTofMax", 20., "Upper bound of track pT for TOF PID"};
53+
Configurable<float> nSigmaTofMax{"nSigmaTofMax", 5., "Nsigma cut on TOF only"};
54+
Configurable<float> nSigmaTofCombinedMax{"nSigmaTofCombinedMax", 5., "Nsigma cut on TOF combined with TPC"};
5555

5656
TrackSelectorPi selectorPion;
5757
TrackSelectorPr selectorProton;

0 commit comments

Comments
 (0)