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

Last change on this file since 1951 was 1951, checked in by tbretz, 21 years ago
*** empty log message ***
File size: 815 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
23 TH2D fHist;
24
25public:
26 MHSigmaPixel(const char *name=NULL, const char *title=NULL);
27
28 virtual Bool_t SetupFill(const MParList *pList);
29 virtual Bool_t Fill(const MParContainer *par);
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 TObject *DrawClone(Option_t *option="") const;
38
39 ClassDef(MHSigmaPixel, 1) //2D-histogram in Sigma and Pixel number
40};
41
42#endif
43
44
45
46
47
Note: See TracBrowser for help on using the repository browser.