source: tags/Mars-V0.6/mhist/MHFadcPix.h

Last change on this file was 1015, checked in by tbretz, 23 years ago
*** empty log message ***
File size: 632 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 void Draw(Option_t *opt=NULL);
32
33 ClassDef(MHFadcPix, 1) // Conatiner to hold two histograms container spektrums for the lo-/hi gain of one pixel
34};
35
36#endif
37
Note: See TracBrowser for help on using the repository browser.