Skip to content

Commit 592883d

Browse files
[PWGHF] Added function to correlate CharmHadron with V0 (AliceO2Group#16316)
Co-authored-by: ALICE Action Bot <alibuild@cern.ch>
1 parent 331c901 commit 592883d

2 files changed

Lines changed: 465 additions & 178 deletions

File tree

PWGHF/HFC/DataModel/CorrelationTables.h

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -224,6 +224,9 @@ DECLARE_SOA_COLUMN(PiNsigmTPC, piNsigmTPC, float); //! A
224224
DECLARE_SOA_COLUMN(PrNsigmTOF, prNsigmTOF, float); //! Associated Particle TOF nSigma Proton
225225
DECLARE_SOA_COLUMN(KaNsigmTOF, kaNsigmTOF, float); //! Associated Particle TOF nSigma Kaon
226226
DECLARE_SOA_COLUMN(PiNsigmTOF, piNsigmTOF, float); //! Associated Particle TOF nSigma Pion
227+
DECLARE_SOA_COLUMN(MCandHadron, mCandHadron, float); //! Invariant mass of Lc/Sc+Hadron combined system
228+
DECLARE_SOA_COLUMN(PtCombined, ptCombined, float); //! Transverse momentum of combined Lc+Hadron system
229+
DECLARE_SOA_COLUMN(MV0, mV0, float); //! Invariant mass of V0
227230
} // namespace hf_correlation_lc_hadron
228231

229232
DECLARE_SOA_TABLE(PtLcFromScHPair, "AOD", "PTLCSCHPAIR", //! Sc-->Lc pT for paired Sc-proton
@@ -252,6 +255,13 @@ DECLARE_SOA_TABLE(LcHadronPair, "AOD", "LCHPAIR", //! Lc-Hadrons pairs Informati
252255
aod::hf_correlation_lc_hadron::PoolBin,
253256
aod::hf_correlation_lc_hadron::IsAutoCorrelated,
254257
aod::hf_correlation_lc_hadron::Cent);
258+
DECLARE_SOA_TABLE(CandHadronInvMass, "AOD", "CANDHIMASS", //! Lc-Hadron mass
259+
aod::hf_correlation_lc_hadron::MCandHadron,
260+
aod::hf_correlation_lc_hadron::PtCombined);
261+
DECLARE_SOA_TABLE(PairedV0InvMass, "AOD", "PAIRV0IMASS", //! invarient mass of v0 which paired with charm candidates
262+
aod::hf_correlation_lc_hadron::MV0);
263+
DECLARE_SOA_TABLE(V0InvMass, "AOD", "V0IMASS", //! invarient mass of v0
264+
aod::hf_correlation_lc_hadron::MV0);
255265

256266
DECLARE_SOA_TABLE(LcHadronRecoInfo, "AOD", "LCHRECOINFO", //! Lc-Hadrons pairs Reconstructed Informations
257267
aod::hf_correlation_lc_hadron::MLc,

0 commit comments

Comments
 (0)