diff --git a/Tutorials/PWGHF/taskMini.cxx b/Tutorials/PWGHF/taskMini.cxx index 8d53fe05251..800153a4fb9 100644 --- a/Tutorials/PWGHF/taskMini.cxx +++ b/Tutorials/PWGHF/taskMini.cxx @@ -180,7 +180,7 @@ struct HfCandidateSelectorD0 { /// \note trackPion = positive and trackKaon = negative for D0 selection and inverse for D0bar /// \return true if candidate passes all cuts for the given conjugate template - bool selectionTopolConjugate(const T1& candidate, const T2& trackPion, const T2& trackKaon) + bool selectionTopolConjugate(const T1& candidate, const T2& trackPion, const T2& /*trackKaon*/) { // invariant-mass cut if (trackPion.sign() > 0) { @@ -295,7 +295,7 @@ struct HfTaskD0 { registry.add("hCpaVsPtCand", strTitle + ";" + "cosine of pointing angle" + ";" + strPt + ";" + strEntries, {HistType::kTH2F, {{110, -1.1, 1.1}, {100, 0., 10.}}}); } - void process(soa::Join const& candidates) + void process(soa::Join const& /*candidates*/) { for (const auto& candidate : selectedD0Candidates) { if (candidate.isSelD0() >= selectionFlagD0) {