From 9bc4ba101dd137531d12118fa1a34a52f098a42d Mon Sep 17 00:00:00 2001 From: vbarbaso <146095385+vbarbaso@users.noreply.github.com> Date: Fri, 19 Apr 2024 16:24:54 +0200 Subject: [PATCH] unused variables (#5700) Signed-off-by: Veronika Barbasova Co-authored-by: Veronika Barbasova --- PWGLF/Utils/rsnOutput.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/PWGLF/Utils/rsnOutput.h b/PWGLF/Utils/rsnOutput.h index d1e025d4a04..73694b4931c 100644 --- a/PWGLF/Utils/rsnOutput.h +++ b/PWGLF/Utils/rsnOutput.h @@ -75,7 +75,7 @@ class Output public: virtual ~Output() = default; - virtual void init(std::vector const& sparseAxes, std::vector const& allAxes, bool produceTrue = false, bool eventMixing = false, bool produceLikesign = false, HistogramRegistry* registry = nullptr) + virtual void init(std::vector const& sparseAxes, std::vector const& allAxes, bool /*produceTrue*/ = false, bool /*eventMixing*/ = false, bool /*produceLikesign*/ = false, HistogramRegistry* registry = nullptr) { mHistogramRegistry = registry; if (mHistogramRegistry == nullptr) @@ -120,15 +120,15 @@ class Output mHistogramRegistry->get(h)->Fill(mFillPoint); } - virtual void fill(EventType t, double* point) + virtual void fill(EventType /*t*/, double* /*point*/) { LOGF(warning, "Abstract method : 'virtual void rsn::Output::fill(EventType t, double* point)' !!! Please implement it first."); }; - virtual void fill(TrackType t, double* point) + virtual void fill(TrackType /*t*/, double* /*point*/) { LOGF(warning, "Abstract method : 'virtual void rsn::Output::fill(TrackType t, double* point)' !!! Please implement it first."); }; - virtual void fill(PairType t, double* point) + virtual void fill(PairType /*t*/, double* /*point*/) { LOGF(warning, "Abstract method : 'virtual void rsn::Output::fill(PairType t, double* point)' !!! Please implement it first."); };