Skip to content

Commit

Permalink
[PWGHF] inclusion PID for tracks
Browse files Browse the repository at this point in the history
  • Loading branch information
1994ra committed Dec 9, 2024
1 parent fc7b48c commit 2bf287a
Show file tree
Hide file tree
Showing 4 changed files with 361 additions and 69 deletions.
13 changes: 13 additions & 0 deletions PWGHF/HFC/DataModel/CorrelationTables.h
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,12 @@ DECLARE_SOA_COLUMN(IsSignal, isSignal, bool); //! U
DECLARE_SOA_COLUMN(IsPrompt, isPrompt, bool); //! Used in MC-Rec, Lc Prompt or Non-Prompt
DECLARE_SOA_COLUMN(IsPhysicalPrimary, isPhysicalPrimary, bool); //! Used in MC-Rec, primary associated particles
DECLARE_SOA_COLUMN(IsAutoCorrelated, isAutoCorrelated, bool); //! Correlation Status
DECLARE_SOA_COLUMN(PrNsigmTPC, prNsigmTPC, float); //! Associated Particle TPC nSigma proton
DECLARE_SOA_COLUMN(KaNsigmTPC, kaNsigmTPC, float); //! Associated Particle TPC nSigma Kaon
DECLARE_SOA_COLUMN(PiNsigmTPC, piNsigmTPC, float); //! Associated Particle TPC nSigma Pion
DECLARE_SOA_COLUMN(PrNsigmTOF, prNsigmTOF, float); //! Associated Particle TOF nSigma Proton
DECLARE_SOA_COLUMN(KaNsigmTOF, kaNsigmTOF, float); //! Associated Particle TOF nSigma Kaon
DECLARE_SOA_COLUMN(PiNsigmTOF, piNsigmTOF, float); //! Associated Particle TOF nSigma Pion
} // namespace hf_correlation_lc_hadron

DECLARE_SOA_TABLE(LcHadronPair, "AOD", "LCHPAIR", //! Lc-Hadrons pairs Informations
Expand All @@ -127,6 +133,13 @@ DECLARE_SOA_TABLE(LcHadronPair, "AOD", "LCHPAIR", //! Lc-Hadrons pairs Informati
DECLARE_SOA_TABLE(LcHadronRecoInfo, "AOD", "LCHRECOINFO", //! Lc-Hadrons pairs Reconstructed Informations
aod::hf_correlation_lc_hadron::MLc,
aod::hf_correlation_lc_hadron::SignalStatus);
DECLARE_SOA_TABLE(LcHadronPairTrkPID, "AOD", "LCHPAIRPID", //! Lc-proton details
aod::hf_correlation_lc_hadron::PrNsigmTPC,
aod::hf_correlation_lc_hadron::KaNsigmTPC,
aod::hf_correlation_lc_hadron::PiNsigmTPC,
aod::hf_correlation_lc_hadron::PrNsigmTOF,
aod::hf_correlation_lc_hadron::KaNsigmTOF,
aod::hf_correlation_lc_hadron::PiNsigmTOF);

DECLARE_SOA_TABLE(LcHadronGenInfo, "AOD", "LCHGENINFO", //! Lc-Hadrons pairs Generated Information
aod::hf_correlation_lc_hadron::IsPrompt,
Expand Down
Loading

0 comments on commit 2bf287a

Please sign in to comment.