@@ -145,6 +145,7 @@ DECLARE_SOA_COLUMN(DeltaY, deltaY, float); //! D
145145DECLARE_SOA_COLUMN (PtLc, ptLc, float ); // ! Transverse momentum of Lc
146146DECLARE_SOA_COLUMN (PtHadron, ptHadron, float ); // ! Transverse momentum of Hadron
147147DECLARE_SOA_COLUMN (MLc, mLc , float ); // ! Invariant mass of Lc
148+ DECLARE_SOA_COLUMN (ChargeCand, chargeCand, int ); // ! store charge of Lc and Sc
148149DECLARE_SOA_COLUMN (MlScoreBkg, mlScoreBkg, float ); // ! ML background score for Lc selection
149150DECLARE_SOA_COLUMN (MlScorePrompt, mlScorePrompt, float ); // ! ML prompt score for Lc selection
150151DECLARE_SOA_COLUMN (SignalStatus, signalStatus, int ); // ! Tag for LcToPKPi/LcToPiKP
@@ -213,8 +214,12 @@ DECLARE_SOA_TABLE(TrkRecInfoLc, "AOD", "TRKRECINFOLC", //! Tracks Reconstructed
213214 aod::hf_correlation_lc_hadron::TrackDcaXY,
214215 aod::hf_correlation_lc_hadron::TrackDcaZ,
215216 aod::hf_correlation_lc_hadron::TrackTPCNClsCrossedRows);
216- DECLARE_SOA_TABLE (LcHadronPairY, " AOD" , " LCHPAIRY" , // ! Lc candidates Generated Information
217+ DECLARE_SOA_TABLE (LcHadronPairY, " AOD" , " LCHPAIRY" ,
217218 aod::hf_correlation_lc_hadron::DeltaY);
219+ DECLARE_SOA_TABLE (CandChargePair, " AOD" , " CANDCHARGEPAIR" ,
220+ aod::hf_correlation_lc_hadron::ChargeCand);
221+ DECLARE_SOA_TABLE (CandCharge, " AOD" , " CANDCHARGE" ,
222+ aod::hf_correlation_lc_hadron::ChargeCand);
218223// definition of columns and tables for Ds-Hadron correlation pairs
219224namespace hf_correlation_ds_hadron
220225{
0 commit comments