Line | |
---|
1 | #ifndef MARS_MCalibColorSteer
|
---|
2 | #define MARS_MCalibColorSteer
|
---|
3 |
|
---|
4 | #ifndef MARS_MTask
|
---|
5 | #include "MTask.h"
|
---|
6 | #endif
|
---|
7 |
|
---|
8 | class MParList;
|
---|
9 | class MGeomCam;
|
---|
10 | class MRawEvtHeader;
|
---|
11 | class MCalibrationChargeCalc;
|
---|
12 | class MCalibrationRelTimeCalc;
|
---|
13 | class MCalibrationIntensityChargeCam;
|
---|
14 | class MCalibrationIntensityBlindCam;
|
---|
15 | class MCalibrationIntensityQECam;
|
---|
16 | class MCalibrationIntensityRelTimeCam;
|
---|
17 | class MBadPixelsIntensityCam;
|
---|
18 | class MCalibColorSteer : public MTask
|
---|
19 | {
|
---|
20 | private:
|
---|
21 |
|
---|
22 | MRawEvtHeader *fHeader; //!
|
---|
23 | MGeomCam *fGeom; //!
|
---|
24 | MParList *fParList; //!
|
---|
25 | MCalibrationIntensityChargeCam *fIntensCharge; //!
|
---|
26 | MCalibrationIntensityBlindCam *fIntensBlind; //!
|
---|
27 | MCalibrationIntensityQECam *fIntensQE; //!
|
---|
28 | MCalibrationIntensityRelTimeCam *fIntensRelTime; //!
|
---|
29 | MBadPixelsIntensityCam *fIntensBad; //!
|
---|
30 |
|
---|
31 | MCalibrationChargeCalc *fChargeCalc; //!
|
---|
32 | MCalibrationRelTimeCalc *fRelTimeCalc; //!
|
---|
33 |
|
---|
34 | UInt_t fPattern;
|
---|
35 |
|
---|
36 | Int_t PreProcess(MParList *pList);
|
---|
37 | Int_t Process();
|
---|
38 |
|
---|
39 | Bool_t ReInitialize();
|
---|
40 | Bool_t Finalize(const char* name);
|
---|
41 | const char* GetNamePattern();
|
---|
42 |
|
---|
43 | public:
|
---|
44 |
|
---|
45 | MCalibColorSteer(const char *name=NULL, const char *title=NULL);
|
---|
46 | ~MCalibColorSteer() {}
|
---|
47 |
|
---|
48 | ClassDef(MCalibColorSteer, 1) // Task to steer the processing of multiple calibration colours
|
---|
49 | };
|
---|
50 |
|
---|
51 | #endif
|
---|
52 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.