@@ -152,7 +152,6 @@ DECLARE_SOA_COLUMN(OmegacChi2OverNdf, omegacChi2OverNdf, float);
152152DECLARE_SOA_COLUMN (MassV0Chi2OverNdf, massV0Chi2OverNdf, float );
153153DECLARE_SOA_COLUMN (MassCascChi2OverNdf, massCascChi2OverNdf, float );
154154DECLARE_SOA_COLUMN (CascRejectInvmass, cascRejectInvmass, float );
155- DECLARE_SOA_COLUMN (OutputMlOmegac, outputMlOmegac, float );
156155} // namespace full
157156
158157DECLARE_SOA_TABLE (HfToOmegaPiEvs, " AOD" , " HFTOOMEPIEV" ,
@@ -200,7 +199,7 @@ DECLARE_SOA_TABLE(HfKfOmegacFulls, "AOD", "HFKFOMEGACFULL",
200199 full::V0Ndf, full::CascNdf, full::OmegacNdf,
201200 full::MassV0Ndf, full::MassCascNdf,
202201 full::V0Chi2OverNdf, full::CascChi2OverNdf, full::OmegacChi2OverNdf,
203- full::MassV0Chi2OverNdf, full::MassCascChi2OverNdf, full::CascRejectInvmass, full::OutputMlOmegac,
202+ full::MassV0Chi2OverNdf, full::MassCascChi2OverNdf, full::CascRejectInvmass,
204203 full::FlagMcMatchRec, full::OriginRec, full::CollisionMatched, hf_track_index::HFflag);
205204
206205DECLARE_SOA_TABLE (HfKfOmegacLites, " AOD" , " HFKFOMEGACLITE" ,
@@ -216,9 +215,6 @@ DECLARE_SOA_TABLE(HfKfOmegacLites, "AOD", "HFKFOMEGACLITE",
216215 full::V0Chi2OverNdf, full::CascChi2OverNdf, full::OmegacChi2OverNdf,
217216 full::CascRejectInvmass,
218217 full::FlagMcMatchRec, full::OriginRec, full::CollisionMatched, hf_track_index::HFflag);
219-
220- DECLARE_SOA_TABLE (HfKfOmegacMl, " AOD" , " HFKFOMEGACML" ,
221- full::InvMassCharmBaryon, full::KfptOmegac, full::KfptPiFromOmegac, full::OutputMlOmegac, full::FlagMcMatchRec, full::OriginRec, full::CollisionMatched, hf_track_index::HFflag);
222218} // namespace o2::aod
223219
224220// / Writes the full information in an output TTree
@@ -227,7 +223,6 @@ struct HfTreeCreatorOmegac0ToOmegaPi {
227223 Produces<o2::aod::HfOmegac0ToOmegaPiLites> rowCandidateLite;
228224 Produces<o2::aod::HfKfOmegacFulls> rowKfCandidateFull;
229225 Produces<o2::aod::HfKfOmegacLites> rowKfCandidateLite;
230- Produces<o2::aod::HfKfOmegacMl> rowKfCandidateMl;
231226 Produces<o2::aod::HfToOmegaPiEvs> rowEv;
232227
233228 Configurable<float > zPvCut{" zPvCut" , 10 ., " Cut on absolute value of primary vertex z coordinate" };
@@ -387,7 +382,6 @@ struct HfTreeCreatorOmegac0ToOmegaPi {
387382 candidate.massV0Chi2OverNdf (),
388383 candidate.massCascChi2OverNdf (),
389384 candidate.cascRejectInvmass (),
390- candidate.mlValueOmegac (),
391385 flagMc,
392386 originMc,
393387 collisionMatched,
@@ -438,23 +432,6 @@ struct HfTreeCreatorOmegac0ToOmegaPi {
438432 }
439433 } // fillKfCandidateLite end
440434
441- template <typename T>
442- void fillKfCandidateMl (const T& candidate, int8_t flagMc, int8_t originMc, bool collisionMatched)
443- {
444- if (candidate.resultSelections () && candidate.statusPidCharmBaryon () && candidate.statusInvMassLambda () && candidate.statusInvMassCascade () && candidate.statusInvMassCharmBaryon ()) {
445-
446- rowKfCandidateMl (
447- candidate.invMassCharmBaryon (),
448- candidate.kfptOmegac (),
449- candidate.kfptPiFromOmegac (),
450- candidate.mlValueOmegac (),
451- flagMc,
452- originMc,
453- collisionMatched,
454- candidate.hfflag ());
455- }
456- } // fillCandidateMl end
457-
458435 void processDataLite (Colls const & collisions, Tracks const &,
459436 soa::Filtered<soa::Join<aod::HfCandToOmegaPi, aod::HfSelToOmegaPi>> const & candidates)
460437 {
@@ -504,22 +481,6 @@ struct HfTreeCreatorOmegac0ToOmegaPi {
504481 }
505482 PROCESS_SWITCH (HfTreeCreatorOmegac0ToOmegaPi, processKfDataLite, " Process KF data Lite" , false );
506483
507- void processKfCandidateMl (Colls const & collisions, Tracks const &, CandKfSel const & candidates)
508- {
509- // Filling event properties
510- rowEv.reserve (collisions.size ());
511- for (const auto & collision : collisions) {
512- fillEvent (collision, zPvCut);
513- }
514-
515- // Filling candidate properties
516- rowKfCandidateFull.reserve (candidates.size ());
517- for (const auto & candidate : candidates) {
518- fillKfCandidateMl (candidate, -7 , RecoDecay::OriginType::None, false );
519- }
520- }
521- PROCESS_SWITCH (HfTreeCreatorOmegac0ToOmegaPi, processKfCandidateMl, " Process KF data ML" , true );
522-
523484 void processMcLite (Colls const & collisions, Tracks const &,
524485 soa::Filtered<soa::Join<aod::HfCandToOmegaPi, aod::HfSelToOmegaPi, aod::HfToOmegaPiMCRec>> const & candidates)
525486 {
0 commit comments