Skip to content

Commit

Permalink
unused variables (AliceO2Group#5700)
Browse files Browse the repository at this point in the history
Signed-off-by: Veronika Barbasova <vernika.barbasova@cern.ch>
Co-authored-by: Veronika Barbasova <vernika.barbasova@cern.ch>
  • Loading branch information
2 people authored and christianreckziegel committed May 2, 2024
1 parent 9d10a7c commit ab1ee3a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions PWGLF/Utils/rsnOutput.h
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ class Output
public:
virtual ~Output() = default;

virtual void init(std::vector<std::string> const& sparseAxes, std::vector<AxisSpec> const& allAxes, bool produceTrue = false, bool eventMixing = false, bool produceLikesign = false, HistogramRegistry* registry = nullptr)
virtual void init(std::vector<std::string> const& sparseAxes, std::vector<AxisSpec> const& allAxes, bool /*produceTrue*/ = false, bool /*eventMixing*/ = false, bool /*produceLikesign*/ = false, HistogramRegistry* registry = nullptr)
{
mHistogramRegistry = registry;
if (mHistogramRegistry == nullptr)
Expand Down Expand Up @@ -120,15 +120,15 @@ class Output
mHistogramRegistry->get<THnSparse>(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.");
};
Expand Down

0 comments on commit ab1ee3a

Please sign in to comment.