@@ -329,6 +329,10 @@ void FemtoUniverseV0Selection::init(HistogramRegistry* registry)
329329 kTH1F , {massAxisAntiLambda});
330330 mHistogramRegistry ->add ((folderName + " /hInvMassLambdaAntiLambda" ).c_str (),
331331 " " , kTH2F , {massAxisLambda, massAxisAntiLambda});
332+ mHistogramRegistry ->add ((folderName + " /hInvMassAntiLambdavsPt" ).c_str (),
333+ " ; ; #it{p}_{T} (GeV/#it{c})" , kTH2F , {massAxisAntiLambda, {8 , 0.0 , 5.0 }});
334+ mHistogramRegistry ->add ((folderName + " /hInvMassLambdavsPt" ).c_str (),
335+ " ; ; #it{p}_{T} (GeV/#it{c})" , kTH2F , {massAxisLambda, {8 , 0.0 , 5.0 }});
332336
333337 posDaughTrack.init <aod::femtouniverseparticle::ParticleType::kV0Child ,
334338 aod::femtouniverseparticle::TrackType::kPosChild ,
@@ -585,7 +589,7 @@ std::array<CutContainerType, 5>
585589 const std::vector<float > decVtx = {v0.x (), v0.y (), v0.z ()};
586590
587591 float observable = 0 .;
588- for (auto & sel : mSelections ) {
592+ for (auto & sel : mSelections ) { // o2-linter: disable=const-ref-in-for-loop
589593 const auto selVariable = sel.getSelectionVariable ();
590594 if (selVariable == femto_universe_v0_selection::kV0DecVtxMax ) {
591595 for (size_t i = 0 ; i < decVtx.size (); ++i) {
@@ -691,6 +695,14 @@ void FemtoUniverseV0Selection::fillQA(C const& /*col*/, V const& v0, T const& po
691695 HIST (o2::aod::femtouniverseparticle::ParticleTypeName[part]) +
692696 HIST (" /hInvMassLambdaAntiLambda" ),
693697 v0.mLambda (), v0.mAntiLambda ());
698+ mHistogramRegistry ->fill (
699+ HIST (o2::aod::femtouniverseparticle::ParticleTypeName[part]) +
700+ HIST (" /hInvMassAntiLambdavsPt" ),
701+ v0.mAntiLambda (), v0.pt ());
702+ mHistogramRegistry ->fill (
703+ HIST (o2::aod::femtouniverseparticle::ParticleTypeName[part]) +
704+ HIST (" /hInvMassLambdavsPt" ),
705+ v0.mLambda (), v0.pt ());
694706 }
695707
696708 posDaughTrack.fillQA <aod::femtouniverseparticle::ParticleType::kV0Child ,
0 commit comments