From 0732ed706088803242b4c545d21b2fbac67bb2ea Mon Sep 17 00:00:00 2001 From: Ivan Razumov Date: Wed, 29 Jan 2025 16:43:01 +0100 Subject: [PATCH] Add missing methods to Style class --- Validation/RecoParticleFlow/interface/NicePlot.h | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Validation/RecoParticleFlow/interface/NicePlot.h b/Validation/RecoParticleFlow/interface/NicePlot.h index 93255eb164977..6de1c6e53a186 100644 --- a/Validation/RecoParticleFlow/interface/NicePlot.h +++ b/Validation/RecoParticleFlow/interface/NicePlot.h @@ -4,7 +4,13 @@ #include #include -class Style : public TH1 {}; +class Style : public TH1 { +private: + void AddBinContent(Int_t) override {} + void AddBinContent(Int_t, Double_t) override {} + Double_t RetrieveBinContent(Int_t) const override { return 0.; } + void UpdateBinContent(Int_t, Double_t) override {} +}; class Styles { public: