source: trunk/MagicSoft/Mars/mhist/MHFadcPix.h@ 1502

Last change on this file since 1502 was 1303, checked in by tbretz, 22 years ago
*** empty log message ***
File size: 673 bytes
Line 
1#ifndef MARS_MHFadcPix
2#define MARS_MHFadcPix
3
4#ifndef MARS_MParContainer
5#include "MParContainer.h"
6#endif
7
8class TH1F;
9
10class MHFadcPix : public MParContainer
11{
12private:
13 TH1F *fHistHi;
14 TH1F *fHistLo;
15
16 UInt_t fPixId;
17
18public:
19 MHFadcPix(UInt_t pixid=0);
20 ~MHFadcPix();
21
22 TH1F *GetHistHi() { return fHistHi; }
23 TH1F *GetHistLo() { return fHistLo; }
24
25 void FillHi(Byte_t i);
26 void FillLo(Byte_t i);
27
28 void DrawHi();
29 void DrawLo();
30
31 TObject *Clone(const char *) const;
32
33 void Draw(Option_t *opt=NULL);
34
35 ClassDef(MHFadcPix, 1) // Conatiner to hold two histograms container spektrums for the lo-/hi gain of one pixel
36};
37
38#endif
39
Note: See TracBrowser for help on using the repository browser.