@@ -42,10 +42,13 @@ DECLARE_SOA_COLUMN(OriginalCollisionCount, originalCollisionCount, int); //! Siz
4242} // namespace hf_reduced_collision
4343
4444DECLARE_SOA_TABLE (HfRedCollisions, " AOD" , " HFREDCOLLISION" , // ! Table with collision for reduced workflow
45- soa::Index<>,
45+ o2:: soa::Index<>,
4646 collision::PosX,
4747 collision::PosY,
4848 collision::PosZ,
49+ o2::soa::Marker<1 >);
50+
51+ DECLARE_SOA_TABLE (HfRedCollExtras, " AOD" , " HFREDCOLLEXTRA" , // ! Table with collision extras for reduced workflow
4952 collision::CovXX,
5053 collision::CovXY,
5154 collision::CovYY,
@@ -147,12 +150,15 @@ using HfRedTracks = HfRedTracksExt;
147150
148151namespace hf_charm_cand_reduced
149152{
150- DECLARE_SOA_COLUMN (InvMass, invMass, float ); // ! Invariant mass of 2prong candidate in GeV/c2
151- DECLARE_SOA_COLUMN (InvMassD0, invMassD0, float ); // ! Invariant mass of 2prong candidate in GeV/c2
152- DECLARE_SOA_COLUMN (InvMassD0Bar, invMassD0Bar, float ); // ! Invariant mass of 2prong candidate in GeV/c2
153- DECLARE_SOA_COLUMN (MlScoreBkg, mlScoreBkg, float ); // ! ML score for background class
154- DECLARE_SOA_COLUMN (MlScorePrompt, mlScorePrompt, float ); // ! ML score for prompt class
155- DECLARE_SOA_COLUMN (MlScoreNonprompt, mlScoreNonprompt, float ); // ! ML score for non-prompt class
153+ DECLARE_SOA_COLUMN (InvMass, invMass, float ); // ! Invariant mass of 2prong candidate in GeV/c2
154+ DECLARE_SOA_COLUMN (InvMassD0, invMassD0, float ); // ! Invariant mass of 2prong candidate in GeV/c2
155+ DECLARE_SOA_COLUMN (InvMassD0Bar, invMassD0Bar, float ); // ! Invariant mass of 2prong candidate in GeV/c2
156+ DECLARE_SOA_COLUMN (MlScoreBkgMassHypo0, mlScoreBkgMassHypo0, float ); // ! ML score for background class (mass hypothesis 0)
157+ DECLARE_SOA_COLUMN (MlScorePromptMassHypo0, mlScorePromptMassHypo0, float ); // ! ML score for prompt class (mass hypothesis 0)
158+ DECLARE_SOA_COLUMN (MlScoreNonpromptMassHypo0, mlScoreNonpromptMassHypo0, float ); // ! ML score for non-prompt class (mass hypothesis 0)
159+ DECLARE_SOA_COLUMN (MlScoreBkgMassHypo1, mlScoreBkgMassHypo1, float ); // ! ML score for background class (mass hypothesis 1)
160+ DECLARE_SOA_COLUMN (MlScorePromptMassHypo1, mlScorePromptMassHypo1, float ); // ! ML score for prompt class (mass hypothesis 1)
161+ DECLARE_SOA_COLUMN (MlScoreNonpromptMassHypo1, mlScoreNonpromptMassHypo1, float ); // ! ML score for non-prompt class (mass hypothesis 1)
156162} // namespace hf_charm_cand_reduced
157163
158164// CAREFUL: need to follow convention [Name = Description + 's'] in DECLARE_SOA_TABLE(Name, "AOD", Description)
@@ -174,9 +180,12 @@ DECLARE_SOA_TABLE(HfRed2ProngsCov, "AOD", "HFRED2PRONGSCOV", //! Table with 2pro
174180 o2::soa::Marker<1 >);
175181
176182DECLARE_SOA_TABLE (HfRed2ProngsMl, " AOD" , " HFRED2PRONGML" , // ! Table with 2prong candidate ML scores
177- hf_charm_cand_reduced::MlScoreBkg,
178- hf_charm_cand_reduced::MlScorePrompt,
179- hf_charm_cand_reduced::MlScoreNonprompt);
183+ hf_charm_cand_reduced::MlScoreBkgMassHypo0,
184+ hf_charm_cand_reduced::MlScorePromptMassHypo0,
185+ hf_charm_cand_reduced::MlScoreNonpromptMassHypo0,
186+ hf_charm_cand_reduced::MlScoreBkgMassHypo1,
187+ hf_charm_cand_reduced::MlScorePromptMassHypo1,
188+ hf_charm_cand_reduced::MlScoreNonpromptMassHypo1);
180189
181190// CAREFUL: need to follow convention [Name = Description + 's'] in DECLARE_SOA_TABLE(Name, "AOD", Description)
182191// to call DECLARE_SOA_INDEX_COLUMN_FULL later on
@@ -197,10 +206,9 @@ DECLARE_SOA_TABLE(HfRed3ProngsCov, "AOD", "HFRED3PRONGSCOV", //! Table with 3pro
197206 o2::soa::Marker<2 >);
198207
199208DECLARE_SOA_TABLE (HfRed3ProngsMl, " AOD" , " HFRED3PRONGML" , // ! Table with 3prong candidate ML scores
200- hf_charm_cand_reduced::MlScoreBkg,
201- hf_charm_cand_reduced::MlScorePrompt,
202- hf_charm_cand_reduced::MlScoreNonprompt,
203- o2::soa::Marker<1 >);
209+ hf_charm_cand_reduced::MlScoreBkgMassHypo0,
210+ hf_charm_cand_reduced::MlScorePromptMassHypo0,
211+ hf_charm_cand_reduced::MlScoreNonpromptMassHypo0);
204212
205213// Beauty candidates prongs
206214namespace hf_cand_b0_reduced
0 commit comments