diff --git a/PWGLF/Tasks/QC/v0cascadesqa.cxx b/PWGLF/Tasks/QC/v0cascadesqa.cxx index 5b76a4e33f8..1c98ab982b8 100644 --- a/PWGLF/Tasks/QC/v0cascadesqa.cxx +++ b/PWGLF/Tasks/QC/v0cascadesqa.cxx @@ -427,14 +427,14 @@ struct v0cascadesQA { if (isMC) { histos.add("histos_V0/GeneratedV0s", "GeneratedV0s", kTH3D, {{3, 0.0f, 3.0f}, axisConfigurations.axisPt, axisConfigurations.axisV0Radius}); - histos.get(HIST("histos_V0/GeneratedV0s"))->GetXaxis()->SetBinLabel(1, "K^{0}_{S}"); - histos.get(HIST("histos_V0/GeneratedV0s"))->GetXaxis()->SetBinLabel(2, "#Lambda"); - histos.get(HIST("histos_V0/GeneratedV0s"))->GetXaxis()->SetBinLabel(3, "#bar{#Lambda}"); + histos.get(HIST("histos_V0/GeneratedV0s"))->GetXaxis()->SetBinLabel(1, "K^{0}_{S}"); + histos.get(HIST("histos_V0/GeneratedV0s"))->GetXaxis()->SetBinLabel(2, "#Lambda"); + histos.get(HIST("histos_V0/GeneratedV0s"))->GetXaxis()->SetBinLabel(3, "#bar{#Lambda}"); histos.add("histos_Casc/GeneratedCascades", "GeneratedCascades", kTH3D, {{4, 0.0f, 4.0f}, axisConfigurations.axisPtCasc, axisConfigurations.axisCascRadius}); - histos.get(HIST("histos_Casc/GeneratedCascades"))->GetXaxis()->SetBinLabel(1, "#Xi^{#minus}"); - histos.get(HIST("histos_Casc/GeneratedCascades"))->GetXaxis()->SetBinLabel(2, "#bar{#Xi}^{+}"); - histos.get(HIST("histos_Casc/GeneratedCascades"))->GetXaxis()->SetBinLabel(3, "#Omega^{#minus}"); - histos.get(HIST("histos_Casc/GeneratedCascades"))->GetXaxis()->SetBinLabel(4, "#bar{#Omega}^{+}"); + histos.get(HIST("histos_Casc/GeneratedCascades"))->GetXaxis()->SetBinLabel(1, "#Xi^{#minus}"); + histos.get(HIST("histos_Casc/GeneratedCascades"))->GetXaxis()->SetBinLabel(2, "#bar{#Xi}^{+}"); + histos.get(HIST("histos_Casc/GeneratedCascades"))->GetXaxis()->SetBinLabel(3, "#Omega^{#minus}"); + histos.get(HIST("histos_Casc/GeneratedCascades"))->GetXaxis()->SetBinLabel(4, "#bar{#Omega}^{+}"); histos.add("histos_V0/InvMassK0sTrue", "InvMassK0sTrue", {HistType::kTH3F, {{100, 0.0f, 10.0f}, {100, 0.f, 50.f}, {200, 0.4f, 0.6f}}}); histos.add("histos_V0/InvMassLambdaTrue", "InvMassLambdaTrue", {HistType::kTH3F, {{100, 0.0f, 10.0f}, {100, 0.f, 50.f}, {200, 1.07f, 1.17f}}}); @@ -1260,7 +1260,7 @@ struct v0cascadesQA { ////////// QA - MC ///////////// //////////////////////////////// - void processMonteCarlo(soa::Join::iterator const& collision, soa::Join const&, soa::Join const& fullV0s, soa::Join const&, soa::Join const& fullCascades, soa::Join const&, DaughterTracks const&, aod::BCsWithTimestamps const&) + void processMonteCarlo(soa::Join::iterator const& collision, soa::Join const&, soa::Join const& fullV0s, soa::Join const&, soa::Join const& fullCascades, soa::Join const&, DaughterTracks const&, aod::BCsWithTimestamps const&) { if (!isEventAccepted(collision, false)) { return; @@ -1315,12 +1315,12 @@ struct v0cascadesQA { if (!casc.has_cascMCCore()) continue; - auto cascMC = casc.template cascMCCore_as>(); + auto cascMC = casc.template cascMCCore_as>(); histos.fill(HIST("histos_Casc/QA_CascadeCandidates"), 0.5); if (isCascadeSelected(casc, collision, cascMC.rapidityMC(0), kXiM)) { - histos.fill(HIST("histos_Casc/QA_CascCandidates"), 1.5); + histos.fill(HIST("histos_Casc/QA_CascadeCandidates"), 1.5); if (checkCascadeMCAssociation(cascMC, kXiM)) { histos.fill(HIST("histos_Casc/QA_CascadeCandidates"), 2.5); histos.fill(HIST("histos_Casc/InvMassXiMinusTrue"), cascMC.ptMC(), casc.cascradius(), casc.mXi()); @@ -1334,7 +1334,7 @@ struct v0cascadesQA { } } if (isCascadeSelected(casc, collision, cascMC.rapidityMC(2), kOmegaM)) { - histos.fill(HIST("histos_Casc/QA_CascCandidates"), 5.5); + histos.fill(HIST("histos_Casc/QA_CascadeCandidates"), 5.5); if (checkCascadeMCAssociation(cascMC, kOmegaM)) { histos.fill(HIST("histos_Casc/QA_CascadeCandidates"), 6.5); histos.fill(HIST("histos_Casc/InvMassOmegaMinusTrue"), cascMC.ptMC(), casc.cascradius(), casc.mOmega()); @@ -1354,7 +1354,7 @@ struct v0cascadesQA { ////////// Collision QA - MC ////////// /////////////////////////////////////// - void processGenerated(soa::Join::iterator const& mcCollision, aod::McParticles const& mcParticles, soa::SmallGroups> const& collisions) + void processGenerated(soa::Join::iterator const& mcCollision, aod::McParticles const& mcParticles, soa::SmallGroups> const& collisions, aod::BCsWithTimestamps const&) { // Apply selections on MC collisions if (eventSelections.applyZVtxSelOnMCPV && std::abs(mcCollision.posZ()) > eventSelections.maxZVtxPosition) {