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

Last change on this file since 2177 was 2043, checked in by tbretz, 21 years ago
*** empty log message ***
File size: 766 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 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.