Skip to content

Commit 14fd2e0

Browse files
authored
Merge pull request #47202 from iarspider/fix-niceplot
Add missing methods to Style class
2 parents b21360a + 0732ed7 commit 14fd2e0

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

Validation/RecoParticleFlow/interface/NicePlot.h

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,13 @@
44
#include <TH1.h>
55
#include <TPad.h>
66

7-
class Style : public TH1 {};
7+
class Style : public TH1 {
8+
private:
9+
void AddBinContent(Int_t) override {}
10+
void AddBinContent(Int_t, Double_t) override {}
11+
Double_t RetrieveBinContent(Int_t) const override { return 0.; }
12+
void UpdateBinContent(Int_t, Double_t) override {}
13+
};
814

915
class Styles {
1016
public:

0 commit comments

Comments
 (0)