diff --git a/PWGCF/FemtoUniverse/Tasks/femtoUniverseDebugV0.cxx b/PWGCF/FemtoUniverse/Tasks/femtoUniverseDebugV0.cxx index a5ebb4a0055..48018d1b95f 100644 --- a/PWGCF/FemtoUniverse/Tasks/femtoUniverseDebugV0.cxx +++ b/PWGCF/FemtoUniverse/Tasks/femtoUniverseDebugV0.cxx @@ -73,7 +73,6 @@ struct FemtoUniverseDebugV0 { Configurable confIsMC{"confIsMC", false, "Enable additional histograms in the case of a Monte Carlo run"}; - /// Partitioning using FemtoFullParticles = soa::Join; Partition partsOne = (aod::femtouniverseparticle::partType == uint8_t(aod::femtouniverseparticle::ParticleType::kV0)) && ((aod::femtouniverseparticle::cut & V0configs.confCutV0) == V0configs.confCutV0); @@ -82,7 +81,6 @@ struct FemtoUniverseDebugV0 { Preslice perCol = aod::femtouniverseparticle::fdCollisionId; - /// Histogramming FemtoUniverseEventHisto eventHisto; FemtoUniverseParticleHisto positiveChildHistos; @@ -94,7 +92,6 @@ struct FemtoUniverseDebugV0 { HistogramRegistry V0Registry{"FullV0QA", {}, OutputObjHandlingPolicy::AnalysisObject}; // o2-linter: disable=name/function-variable HistogramRegistry thetaRegistry{"ThetaQA", {}, OutputObjHandlingPolicy::AnalysisObject}; - void init(InitContext&) { eventHisto.init(&eventRegistry); @@ -111,7 +108,6 @@ struct FemtoUniverseDebugV0 { thetaRegistry.add("Theta/NegativeChild/hThetaPhi", " ; #phi; cos(#theta)", kTH2F, {{100, -1, 7}, {110, -1.1, 1.1}}); } - /// Produce QA plots for V0 and its children on real data void processData(o2::aod::FdCollision const& col, FemtoFullParticles const& parts) { @@ -154,7 +150,6 @@ struct FemtoUniverseDebugV0 { } PROCESS_SWITCH(FemtoUniverseDebugV0, processData, "Enable processing on real data", true); - /// Produce QA plots for V0 and its children on MonteCarlo data void processMC(o2::aod::FdCollision const& col, soa::Join const& parts, o2::aod::FdMCParticles const&) { @@ -198,7 +193,6 @@ struct FemtoUniverseDebugV0 { PROCESS_SWITCH(FemtoUniverseDebugV0, processMC, "Enable processing on Monte Carlo", false); }; - WorkflowSpec defineDataProcessing(ConfigContext const& cfgc) {