@@ -51,21 +51,21 @@ DECLARE_SOA_TABLE(DDbarRecoInfo, "AOD", "DDBARRECOINFO",
5151// definition of columns and tables for D0-Hadron correlation pairs
5252namespace hf_correlation_d0_hadron
5353{
54- DECLARE_SOA_COLUMN (DeltaPhi, deltaPhi, float ); // ! DeltaPhi between D0 and Hadrons
55- DECLARE_SOA_COLUMN (DeltaEta, deltaEta, float ); // ! DeltaEta between D0 and Hadrons
56- DECLARE_SOA_COLUMN (PtD, ptD, float ); // ! Transverse momentum of D0
57- DECLARE_SOA_COLUMN (PtHadron, ptHadron, float ); // ! Transverse momentum of Hadron
58- DECLARE_SOA_COLUMN (MD, mD , float ); // ! Invariant mass of D0
59- DECLARE_SOA_COLUMN (MDbar, mDbar , float ); // ! Invariant mass of D0bar
60- DECLARE_SOA_COLUMN (MlScoreBkgD0, mlScoreBkgD0, float ); // ! ML background score for D0 selection
54+ DECLARE_SOA_COLUMN (DeltaPhi, deltaPhi, float ); // ! DeltaPhi between D0 and Hadrons
55+ DECLARE_SOA_COLUMN (DeltaEta, deltaEta, float ); // ! DeltaEta between D0 and Hadrons
56+ DECLARE_SOA_COLUMN (PtD, ptD, float ); // ! Transverse momentum of D0
57+ DECLARE_SOA_COLUMN (PtHadron, ptHadron, float ); // ! Transverse momentum of Hadron
58+ DECLARE_SOA_COLUMN (MD, mD , float ); // ! Invariant mass of D0
59+ DECLARE_SOA_COLUMN (MDbar, mDbar , float ); // ! Invariant mass of D0bar
60+ DECLARE_SOA_COLUMN (MlScoreBkgD0, mlScoreBkgD0, float ); // ! ML background score for D0 selection
6161DECLARE_SOA_COLUMN (MlScoreNonPromptD0, mlScoreNonPromptD0, float ); // ! ML prompt score for D0 selection
6262DECLARE_SOA_COLUMN (MlScorePromptD0, mlScorePromptD0, float ); // ! ML prompt score for D0 selection
6363DECLARE_SOA_COLUMN (MlScoreBkgD0bar, mlScoreBkgD0bar, float ); // ! ML background score for D0 selection
6464DECLARE_SOA_COLUMN (MlScoreNonPromptD0bar, mlScoreNonPromptD0bar, float ); // ! ML prompt score for D0 selection
6565DECLARE_SOA_COLUMN (MlScorePromptD0bar, mlScorePromptD0bar, float ); // ! ML prompt score for D0 selection
66- DECLARE_SOA_COLUMN (SignalStatus, signalStatus, int ); // ! Tag for D0,D0bar
67- DECLARE_SOA_COLUMN (PoolBin, poolBin, int ); // ! Pool Bin for the MixedEvent
68- DECLARE_SOA_COLUMN (IsAutoCorrelated, isAutoCorrelated, bool ); // ! Correlation Status
66+ DECLARE_SOA_COLUMN (SignalStatus, signalStatus, int ); // ! Tag for D0,D0bar
67+ DECLARE_SOA_COLUMN (PoolBin, poolBin, int ); // ! Pool Bin for the MixedEvent
68+ DECLARE_SOA_COLUMN (IsAutoCorrelated, isAutoCorrelated, bool ); // ! Correlation Status
6969
7070enum ParticleTypeData {
7171 D0Only = 1 , // Identified as D0
@@ -243,6 +243,27 @@ DECLARE_SOA_TABLE(TrackRecoInfo, "AOD", "TRACKRECOINFO", //! Tracks Reconstructe
243243 aod::hf_correlation_ds_hadron::TrackDcaZ,
244244 aod::hf_correlation_ds_hadron::TrackTPCNClsCrossedRows);
245245
246+ // definition of columns and tables for LambdaC properties
247+ namespace hf_lc_baryon
248+ {
249+ DECLARE_SOA_COLUMN (Phi, phi, float ); // ! Phi of Lc
250+ DECLARE_SOA_COLUMN (Eta, eta, float ); // ! Eta of Lc
251+ DECLARE_SOA_COLUMN (PtLc, ptLc, float ); // ! Transverse momentum of Lc
252+ DECLARE_SOA_COLUMN (MLc, mLc , float ); // ! Invariant mass of Lc
253+ DECLARE_SOA_COLUMN (PoolBin, poolBin, int ); // ! Pool Bin of event defined using zvtx and multiplicity
254+ DECLARE_SOA_COLUMN (GIndexCol, gIndexCol , int ); // ! Global index for the collision
255+ DECLARE_SOA_COLUMN (TimeStamp, timeStamp, int64_t ); // ! Timestamp for the collision
256+ } // namespace hf_lc_baryon
257+
258+ DECLARE_SOA_TABLE (Lc, " AOD" , " LC" , // ! Lc properties
259+ aod::hf_lc_baryon::Phi,
260+ aod::hf_lc_baryon::Eta,
261+ aod::hf_lc_baryon::PtLc,
262+ aod::hf_lc_baryon::MLc,
263+ aod::hf_lc_baryon::PoolBin,
264+ aod::hf_lc_baryon::GIndexCol,
265+ aod::hf_lc_baryon::TimeStamp);
266+
246267// definition of columns and tables for Dplus properties
247268namespace hf_dplus_meson
248269{
0 commit comments