Line | |
---|
1 | #ifndef MARS_MHCalibrationPINDiode
|
---|
2 | #define MARS_MHCalibrationPINDiode
|
---|
3 |
|
---|
4 | #ifndef MARS_MHCalibrationPixel
|
---|
5 | #include "MHCalibrationPixel.h"
|
---|
6 | #endif
|
---|
7 |
|
---|
8 | class TH1I;
|
---|
9 | class TH1F;
|
---|
10 | class TF1;
|
---|
11 |
|
---|
12 | class MHCalibrationPINDiode : public MHCalibrationPixel
|
---|
13 | {
|
---|
14 | private:
|
---|
15 |
|
---|
16 | TH1I* fHPCharge; //-> Histogram containing the summed 32 PINDiode slices
|
---|
17 | TH1F* fHErrCharge; //-> Variance of summed FADC slices
|
---|
18 | TH1I* fHPTime; //-> Histogram with time evolution of summed charges
|
---|
19 |
|
---|
20 |
|
---|
21 | TF1 *fVarGausFit;
|
---|
22 |
|
---|
23 | Float_t fErrChargeFirst;
|
---|
24 | Float_t fErrChargeLast;
|
---|
25 | UShort_t fErrChargeNbins;
|
---|
26 |
|
---|
27 | public:
|
---|
28 |
|
---|
29 | MHCalibrationPINDiode(const char *name=NULL, const char *title=NULL);
|
---|
30 | ~MHCalibrationPINDiode();
|
---|
31 |
|
---|
32 | const Double_t GetTime() const;
|
---|
33 | const Double_t GetErrTime() const;
|
---|
34 |
|
---|
35 | ClassDef(MHCalibrationPINDiode, 0) // Histograms from the Calibration PIN Diode
|
---|
36 | };
|
---|
37 |
|
---|
38 | #endif
|
---|
39 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.