source: trunk/MagicSoft/Mars/mcalib/MCalibrationCalc.h@ 2734

Last change on this file since 2734 was 2734, checked in by tbretz, 21 years ago
*** empty log message ***
File size: 2.7 KB
Line 
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
17class MRawEvtData;
18class MRawRunHeader;
19
20class MPedestalCam;
21class MCalibrationCam;
22class MExtractedSignalCam;
23
24class MTime;
25
26class MCalibrationCalc : public MTask
27{
28private:
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
46 Byte_t fFlags; // Flag for the fits used
47
48 Float_t fConversionHiLo;
49
50 enum { kUseTimeFits, kUseBlindPixelFit, kUsePinDiodeFit };
51
52public:
53
54 enum PulserColor_t { kEGreen, kEBlue, kEUV, kECT1 };
55
56private:
57
58 PulserColor_t fColor;
59
60 Bool_t ReInit(MParList *pList);
61 Int_t PreProcess(MParList *pList);
62 Int_t Process();
63 Int_t PostProcess();
64
65public:
66
67 MCalibrationCalc(const char *name=NULL, const char *title=NULL);
68
69 void SetSkipTimeFits(Bool_t b=kTRUE)
70 {b ? CLRBIT(fFlags, kUseTimeFits) : SETBIT(fFlags, kUseTimeFits);}
71 void SetSkipBlindPixelFit(Bool_t b=kTRUE)
72 {b ? CLRBIT(fFlags, kUseBlindPixelFit) : SETBIT(fFlags, kUseBlindPixelFit);}
73 void SetSkipPinDiodeFit(Bool_t b=kTRUE)
74 {b ? CLRBIT(fFlags, kUsePinDiodeFit) : SETBIT(fFlags, kUsePinDiodeFit);}
75
76 void SetPulserColor(PulserColor_t color) { fColor = color; }
77
78 void SetConversionHiLo(Float_t conv) { fConversionHiLo = conv; }
79
80 ClassDef(MCalibrationCalc, 1) // Task to fill the Calibration Containers from raw data
81};
82
83#endif
Note: See TracBrowser for help on using the repository browser.