Line | |
---|
1 | #ifndef MARS_MHBlindPixels
|
---|
2 | #define MARS_MHBlindPixels
|
---|
3 |
|
---|
4 | #ifndef MARS_MH
|
---|
5 | #include "MH.h"
|
---|
6 | #endif
|
---|
7 | #ifndef ROOT_TH1
|
---|
8 | #include <TH1.h>
|
---|
9 | #endif
|
---|
10 |
|
---|
11 | class MHBlindPixels : public MH
|
---|
12 | {
|
---|
13 | private:
|
---|
14 | TH1D fHist; //
|
---|
15 |
|
---|
16 | public:
|
---|
17 | MHBlindPixels(const char *name=NULL, const char *title=NULL);
|
---|
18 |
|
---|
19 | const TH1D *GetHist() { return &fHist; }
|
---|
20 | const TH1D *GetHist() const { return &fHist; }
|
---|
21 |
|
---|
22 | TH1 *GetHistByName(const TString name) { return &fHist; }
|
---|
23 |
|
---|
24 | void Draw(Option_t* option = "");
|
---|
25 | Bool_t Fill(const MParContainer *par, Double_t w=1);
|
---|
26 |
|
---|
27 | ClassDef(MHBlindPixels, 1) // Histogram of blind pixels
|
---|
28 | };
|
---|
29 |
|
---|
30 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.