Skip to content

Commit 0732ed7

Browse files
committed
Add missing methods to Style class
1 parent 7f549d8 commit 0732ed7

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)