From e8668ceb6b47106a94851c49cca2112d2caff2c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADt=20Ku=C4=8Dera?= Date: Wed, 17 Apr 2024 21:18:38 +0200 Subject: [PATCH] Tutorials/PWGHF: Fix compilation warnings: unused-parameter (#5675) * Tutorials/PWGHF: Fix compilation warnings: unused-parameter * Please consider the following formatting changes (#65) --------- Co-authored-by: ALICE Builder --- Tutorials/PWGHF/taskMini.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) {