@@ -123,27 +123,39 @@ DECLARE_SOA_COLUMN(DeltaEta, deltaEta, float); //! DeltaEta bet
123123DECLARE_SOA_COLUMN (PtD, ptD, float ); // ! Transverse momentum of Ds
124124DECLARE_SOA_COLUMN (PtHadron, ptHadron, float ); // ! Transverse momentum of Hadron
125125DECLARE_SOA_COLUMN (MD, mD , float ); // ! Invariant mass of Ds
126+ DECLARE_SOA_COLUMN (MlScoreBkg, mlScoreBkg, float ); // ! ML background score for Ds selection
127+ DECLARE_SOA_COLUMN (MlScorePrompt, mlScorePrompt, float ); // ! ML prompt score for Ds selection
126128DECLARE_SOA_COLUMN (PoolBin, poolBin, int ); // ! Pool Bin for the MixedEvent
127129DECLARE_SOA_COLUMN (IsSignal, isSignal, bool ); // ! Used in MC-Rec, Ds Signal
128130DECLARE_SOA_COLUMN (IsPrompt, isPrompt, bool ); // ! Used in MC-Rec, Ds Prompt or Non-Prompt
129131DECLARE_SOA_COLUMN (IsPhysicalPrimary, isPhysicalPrimary, bool ); // ! Used in MC-Rec, primary associated particles
130132} // namespace hf_correlation_ds_hadron
131133
132- DECLARE_SOA_TABLE (DsHadronPair, " AOD" , " DSHPAIR" , // ! Ds-Hadrons pairs Informations
134+ DECLARE_SOA_TABLE (DsHadronPair, " AOD" , " DSHPAIR" , // ! Ds-Hadrons pairs Information
133135 aod::hf_correlation_ds_hadron::DeltaPhi,
134136 aod::hf_correlation_ds_hadron::DeltaEta,
135137 aod::hf_correlation_ds_hadron::PtD,
136138 aod::hf_correlation_ds_hadron::PtHadron,
137139 aod::hf_correlation_ds_hadron::PoolBin);
138140
139- DECLARE_SOA_TABLE (DsHadronRecoInfo, " AOD" , " DSHRECOINFO" , // ! Ds-Hadrons pairs Reconstructed Informations
141+ DECLARE_SOA_TABLE (DsHadronRecoInfo, " AOD" , " DSHRECOINFO" , // ! Ds-Hadrons pairs Reconstructed Information
140142 aod::hf_correlation_ds_hadron::MD,
141143 aod::hf_correlation_ds_hadron::IsSignal);
142144
143- DECLARE_SOA_TABLE (DsHadronGenInfo, " AOD" , " DSHGENINFO" , // ! Ds-Hadrons pairs Generated Informations
145+ DECLARE_SOA_TABLE (DsHadronGenInfo, " AOD" , " DSHGENINFO" , // ! Ds-Hadrons pairs Generated Information
144146 aod::hf_correlation_ds_hadron::IsPrompt,
145147 aod::hf_correlation_ds_hadron::IsPhysicalPrimary);
146148
149+ DECLARE_SOA_TABLE (DsHadronMlInfo, " AOD" , " DSHMLINFO" , // ! Ds-Hadrons pairs Machine Learning Information
150+ aod::hf_correlation_ds_hadron::MlScorePrompt,
151+ aod::hf_correlation_ds_hadron::MlScoreBkg);
152+
153+ DECLARE_SOA_TABLE (DsCandRecoInfo, " AOD" , " DSCANDRECOINFO" , // ! Ds candidates Reconstructed Information
154+ aod::hf_correlation_ds_hadron::MD,
155+ aod::hf_correlation_ds_hadron::PtD,
156+ aod::hf_correlation_ds_hadron::MlScorePrompt,
157+ aod::hf_correlation_ds_hadron::MlScoreBkg);
158+
147159// definition of columns and tables for Dplus properties
148160namespace hf_dplus_meson
149161{
0 commit comments