Skip to content

Commit 9929f97

Browse files
[PWGHF] PID inclusion for associated particles in Lc correlation (#8892)
Co-authored-by: ALICE Action Bot <alibuild@cern.ch>
1 parent 9229923 commit 9929f97

File tree

4 files changed

+389
-81
lines changed

4 files changed

+389
-81
lines changed

PWGHF/HFC/DataModel/CorrelationTables.h

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,12 @@ DECLARE_SOA_COLUMN(IsSignal, isSignal, bool); //! U
137137
DECLARE_SOA_COLUMN(IsPrompt, isPrompt, bool); //! Used in MC-Rec, Lc Prompt or Non-Prompt
138138
DECLARE_SOA_COLUMN(IsPhysicalPrimary, isPhysicalPrimary, bool); //! Used in MC-Rec, primary associated particles
139139
DECLARE_SOA_COLUMN(IsAutoCorrelated, isAutoCorrelated, bool); //! Correlation Status
140+
DECLARE_SOA_COLUMN(PrNsigmTPC, prNsigmTPC, float); //! Associated Particle TPC nSigma proton
141+
DECLARE_SOA_COLUMN(KaNsigmTPC, kaNsigmTPC, float); //! Associated Particle TPC nSigma Kaon
142+
DECLARE_SOA_COLUMN(PiNsigmTPC, piNsigmTPC, float); //! Associated Particle TPC nSigma Pion
143+
DECLARE_SOA_COLUMN(PrNsigmTOF, prNsigmTOF, float); //! Associated Particle TOF nSigma Proton
144+
DECLARE_SOA_COLUMN(KaNsigmTOF, kaNsigmTOF, float); //! Associated Particle TOF nSigma Kaon
145+
DECLARE_SOA_COLUMN(PiNsigmTOF, piNsigmTOF, float); //! Associated Particle TOF nSigma Pion
140146
} // namespace hf_correlation_lc_hadron
141147

142148
DECLARE_SOA_TABLE(LcHadronPair, "AOD", "LCHPAIR", //! Lc-Hadrons pairs Informations
@@ -150,6 +156,13 @@ DECLARE_SOA_TABLE(LcHadronPair, "AOD", "LCHPAIR", //! Lc-Hadrons pairs Informati
150156
DECLARE_SOA_TABLE(LcHadronRecoInfo, "AOD", "LCHRECOINFO", //! Lc-Hadrons pairs Reconstructed Informations
151157
aod::hf_correlation_lc_hadron::MLc,
152158
aod::hf_correlation_lc_hadron::SignalStatus);
159+
DECLARE_SOA_TABLE(LcHadronPairTrkPID, "AOD", "LCHPAIRPID", //! Lc-proton details
160+
aod::hf_correlation_lc_hadron::PrNsigmTPC,
161+
aod::hf_correlation_lc_hadron::KaNsigmTPC,
162+
aod::hf_correlation_lc_hadron::PiNsigmTPC,
163+
aod::hf_correlation_lc_hadron::PrNsigmTOF,
164+
aod::hf_correlation_lc_hadron::KaNsigmTOF,
165+
aod::hf_correlation_lc_hadron::PiNsigmTOF);
153166

154167
DECLARE_SOA_TABLE(LcHadronGenInfo, "AOD", "LCHGENINFO", //! Lc-Hadrons pairs Generated Information
155168
aod::hf_correlation_lc_hadron::IsPrompt,

0 commit comments

Comments
 (0)