1 | #ifndef MARS_MHCalibrationPix
|
---|
2 | #define MARS_MHCalibrationPix
|
---|
3 |
|
---|
4 | #ifndef MARS_MHGausEvents
|
---|
5 | #include "MHGausEvents.h"
|
---|
6 | #endif
|
---|
7 |
|
---|
8 | class MHCalibrationPix : public MHGausEvents
|
---|
9 | {
|
---|
10 | private:
|
---|
11 |
|
---|
12 | const static Float_t fgBlackoutLimit; //! Default for fBlackoutLimit (now set to: 5. )
|
---|
13 | const static Float_t fgPickupLimit; //! Default for fPickupLimit (now set to: 5. )
|
---|
14 |
|
---|
15 | protected:
|
---|
16 |
|
---|
17 | Float_t fBlackoutLimit; // Lower nr sigmas from mean until event is considered blackout
|
---|
18 | Int_t fSaturated; // Number of events classified as saturated
|
---|
19 | Float_t fPickupLimit; // Upper nr sigmas from mean until event is considered pickup
|
---|
20 | Int_t fPixId; // Pixel ID
|
---|
21 |
|
---|
22 | public:
|
---|
23 |
|
---|
24 | MHCalibrationPix(const char* name=NULL, const char* title=NULL);
|
---|
25 | ~MHCalibrationPix() {}
|
---|
26 |
|
---|
27 | void Clear(Option_t *o="");
|
---|
28 |
|
---|
29 | // Getters
|
---|
30 | const Double_t GetBlackout () const;
|
---|
31 | const Double_t GetPickup () const;
|
---|
32 | const Int_t GetPixId () const { return fPixId; }
|
---|
33 | const Float_t GetSaturated () const { return fSaturated; }
|
---|
34 |
|
---|
35 | // Fits
|
---|
36 | Bool_t RepeatFit(const Option_t *option="RQ0"); // Repeat fit within limits defined by fPickupLimit
|
---|
37 | void BypassFit(); // Take mean and RMS from the histogram
|
---|
38 |
|
---|
39 | // Setters
|
---|
40 | void AddSaturated ( const Int_t i ) { fSaturated += i; }
|
---|
41 | void SetBlackoutLimit ( const Float_t lim=fgBlackoutLimit ) { fBlackoutLimit = lim; }
|
---|
42 | void SetPickupLimit ( const Float_t lim=fgPickupLimit ) { fPickupLimit = lim; }
|
---|
43 | void SetPixId ( const Int_t i ) { fPixId = i; }
|
---|
44 |
|
---|
45 | // Miscelleaneous
|
---|
46 | virtual void ChangeHistId(const Int_t id); // Changes names and titles of the histogram
|
---|
47 | virtual void Renorm(); // Re-normalize the results
|
---|
48 |
|
---|
49 | ClassDef(MHCalibrationPix, 1) // Base class for calibration events
|
---|
50 | };
|
---|
51 |
|
---|
52 | #endif
|
---|