| Line | |
|---|
| 1 | #ifndef MARS_MHSigmaPixel
|
|---|
| 2 | #define MARS_MHSigmaPixel
|
|---|
| 3 |
|
|---|
| 4 | #ifndef MARS_MH
|
|---|
| 5 | #include "MH.h"
|
|---|
| 6 | #endif
|
|---|
| 7 |
|
|---|
| 8 | #ifndef ROOT_TH2
|
|---|
| 9 | #include "TH2.h"
|
|---|
| 10 | #endif
|
|---|
| 11 |
|
|---|
| 12 | class MMcEvt;
|
|---|
| 13 | class MPedestalCam;
|
|---|
| 14 | class TH2D;
|
|---|
| 15 | class MParList;
|
|---|
| 16 |
|
|---|
| 17 |
|
|---|
| 18 | class MHSigmaPixel : public MH
|
|---|
| 19 | {
|
|---|
| 20 | private:
|
|---|
| 21 | MPedestalCam *fPedestalCam; //!
|
|---|
| 22 |
|
|---|
| 23 | TH2D fHist;
|
|---|
| 24 |
|
|---|
| 25 | public:
|
|---|
| 26 | MHSigmaPixel(const char *name=NULL, const char *title=NULL);
|
|---|
| 27 |
|
|---|
| 28 | Bool_t SetupFill(const MParList *pList);
|
|---|
| 29 | Bool_t Fill(const MParContainer *par, const Stat_t w=1);
|
|---|
| 30 |
|
|---|
| 31 | const TH2D *GetHist() { return &fHist; }
|
|---|
| 32 | const TH2D *GetHist() const { return &fHist; }
|
|---|
| 33 |
|
|---|
| 34 | TH1 *GetHistByName(const TString name) { return &fHist; }
|
|---|
| 35 |
|
|---|
| 36 | void Draw(Option_t *option="");
|
|---|
| 37 |
|
|---|
| 38 | ClassDef(MHSigmaPixel, 1) //2D-histogram in Sigma and Pixel number
|
|---|
| 39 | };
|
|---|
| 40 |
|
|---|
| 41 | #endif
|
|---|
| 42 |
|
|---|
| 43 |
|
|---|
| 44 |
|
|---|
| 45 |
|
|---|
| 46 |
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.