1 | #ifndef MARS_MCalibrationCalc
|
---|
2 | #define MARS_MCalibrationCalc
|
---|
3 |
|
---|
4 | /////////////////////////////////////////////////////////////////////////////
|
---|
5 | // //
|
---|
6 | // MCalibrationCalc //
|
---|
7 | // //
|
---|
8 | // Integrates the time slices of the all pixels of a calibration event //
|
---|
9 | // and substract the pedestal value //
|
---|
10 | // //
|
---|
11 | /////////////////////////////////////////////////////////////////////////////
|
---|
12 |
|
---|
13 | #ifndef MARS_MTask
|
---|
14 | #include "MTask.h"
|
---|
15 | #endif
|
---|
16 |
|
---|
17 | class MRawEvtData;
|
---|
18 | class MRawRunHeader;
|
---|
19 |
|
---|
20 | class MPedestalCam;
|
---|
21 | class MCalibrationCam;
|
---|
22 | class MExtractedSignalCam;
|
---|
23 |
|
---|
24 | class MTime;
|
---|
25 |
|
---|
26 | class MCalibrationCalc : public MTask
|
---|
27 | {
|
---|
28 | private:
|
---|
29 |
|
---|
30 | MPedestalCam *fPedestals; // Pedestals of all pixels in the camera
|
---|
31 | MCalibrationCam *fCalibrations; // Calibration events of all pixels in the camera
|
---|
32 | MExtractedSignalCam *fSignals; // Calibration events of all pixels in the camera
|
---|
33 |
|
---|
34 | MRawEvtData *fRawEvt; // raw event data (time slices)
|
---|
35 | MRawRunHeader *fRunHeader; // RunHeader information
|
---|
36 |
|
---|
37 | MTime *fEvtTime; // Time of the event
|
---|
38 |
|
---|
39 | Int_t fEvents; // Number of events
|
---|
40 | Int_t fHistOverFlow; // Number of events with saturated Low Gain
|
---|
41 | Int_t fCosmics; // Number of events due to supposed cosmics
|
---|
42 |
|
---|
43 | Byte_t fNumHiGainSamples;
|
---|
44 | Byte_t fNumLoGainSamples;
|
---|
45 | Float_t fSqrtHiGainSamples;
|
---|
46 |
|
---|
47 | Byte_t fFlags; // Flag for the fits used
|
---|
48 |
|
---|
49 | Float_t fConversionHiLo;
|
---|
50 |
|
---|
51 | enum { kUseTimeFits, kUseBlindPixelFit, kUsePinDiodeFit };
|
---|
52 |
|
---|
53 | public:
|
---|
54 |
|
---|
55 | enum PulserColor_t { kEGreen, kEBlue, kEUV, kECT1 };
|
---|
56 |
|
---|
57 | private:
|
---|
58 |
|
---|
59 | PulserColor_t fColor;
|
---|
60 |
|
---|
61 | Bool_t ReInit(MParList *pList);
|
---|
62 | Int_t PreProcess(MParList *pList);
|
---|
63 | Int_t Process();
|
---|
64 | Int_t PostProcess();
|
---|
65 |
|
---|
66 | public:
|
---|
67 |
|
---|
68 | MCalibrationCalc(const char *name=NULL, const char *title=NULL);
|
---|
69 |
|
---|
70 | void SetSkipTimeFits(Bool_t b=kTRUE)
|
---|
71 | {b ? CLRBIT(fFlags, kUseTimeFits) : SETBIT(fFlags, kUseTimeFits);}
|
---|
72 | void SetSkipBlindPixelFit(Bool_t b=kTRUE)
|
---|
73 | {b ? CLRBIT(fFlags, kUseBlindPixelFit) : SETBIT(fFlags, kUseBlindPixelFit);}
|
---|
74 | void SetSkipPinDiodeFit(Bool_t b=kTRUE)
|
---|
75 | {b ? CLRBIT(fFlags, kUsePinDiodeFit) : SETBIT(fFlags, kUsePinDiodeFit);}
|
---|
76 |
|
---|
77 | void SetPulserColor(PulserColor_t color) { fColor = color; }
|
---|
78 |
|
---|
79 | void SetConversionHiLo(Float_t conv) { fConversionHiLo = conv; }
|
---|
80 |
|
---|
81 | ClassDef(MCalibrationCalc, 1) // Task to fill the Calibration Containers from raw data
|
---|
82 | };
|
---|
83 |
|
---|
84 | #endif
|
---|