source: trunk/MagicSoft/Mars/mhist/MHSigmaPixel.h@ 1854

Last change on this file since 1854 was 1682, checked in by rwagner, 22 years ago
*** empty log message ***
File size: 810 bytes
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
12class MMcEvt;
13class MPedestalCam;
14class TH2D;
15class MParList;
16
17
18class MHSigmaPixel : public MH
19{
20private:
21 MPedestalCam *fPedestalCam;
22 TH2D fHist;
23
24public:
25 MHSigmaPixel(const char *name=NULL, const char *title=NULL);
26
27 virtual Bool_t SetupFill(const MParList *pList);
28 virtual Bool_t Fill(const MParContainer *par);
29
30 const TH2D *GetHist() { return &fHist; }
31 const TH2D *GetHist() const { return &fHist; }
32
33 TH1 *GetHistByName(const TString name) { return &fHist; }
34
35 void Draw(Option_t *option="");
36 TObject *DrawClone(Option_t *option="") const;
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.