| 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 MCalibrationPattern;
|
|---|
| 11 | class MRawRunHeader;
|
|---|
| 12 | class MRawEvtHeader;
|
|---|
| 13 | class MCalibrationChargeCalc;
|
|---|
| 14 | class MCalibrationRelTimeCalc;
|
|---|
| 15 | class MCalibrationIntensityChargeCam;
|
|---|
| 16 | class MCalibrationIntensityBlindCam;
|
|---|
| 17 | class MCalibrationIntensityQECam;
|
|---|
| 18 | class MCalibrationIntensityRelTimeCam;
|
|---|
| 19 | class MBadPixelsIntensityCam;
|
|---|
| 20 | class MBadPixelsCam;
|
|---|
| 21 | class MCalibColorSteer : public MTask
|
|---|
| 22 | {
|
|---|
| 23 | private:
|
|---|
| 24 |
|
|---|
| 25 |
|
|---|
| 26 | MCalibrationPattern *fCalibPattern; //!
|
|---|
| 27 | MRawEvtHeader *fEvtHeader; //!
|
|---|
| 28 | MRawRunHeader *fRunHeader; //!
|
|---|
| 29 | MGeomCam *fGeom; //!
|
|---|
| 30 | MParList *fParList; //!
|
|---|
| 31 | MCalibrationIntensityChargeCam *fIntensCharge; //!
|
|---|
| 32 | MCalibrationIntensityBlindCam *fIntensBlind; //!
|
|---|
| 33 | MCalibrationIntensityQECam *fIntensQE; //!
|
|---|
| 34 | MCalibrationIntensityRelTimeCam *fIntensRelTime; //!
|
|---|
| 35 | MBadPixelsIntensityCam *fIntensBad; //!
|
|---|
| 36 | MBadPixelsCam *fBad; //!
|
|---|
| 37 |
|
|---|
| 38 | MCalibrationChargeCalc *fChargeCalc; //!
|
|---|
| 39 | MCalibrationRelTimeCalc *fRelTimeCalc; //!
|
|---|
| 40 |
|
|---|
| 41 | UInt_t fPattern;
|
|---|
| 42 |
|
|---|
| 43 | Int_t PreProcess(MParList *pList);
|
|---|
| 44 | Int_t Process();
|
|---|
| 45 |
|
|---|
| 46 | Bool_t ReInitialize();
|
|---|
| 47 | Bool_t Finalize(const char* name);
|
|---|
| 48 | TString GetNamePattern();
|
|---|
| 49 |
|
|---|
| 50 | public:
|
|---|
| 51 |
|
|---|
| 52 | MCalibColorSteer(const char *name=NULL, const char *title=NULL);
|
|---|
| 53 | ~MCalibColorSteer() {}
|
|---|
| 54 |
|
|---|
| 55 | ClassDef(MCalibColorSteer, 1) // Task to steer the processing of multiple calibration colours
|
|---|
| 56 | };
|
|---|
| 57 |
|
|---|
| 58 | #endif
|
|---|
| 59 |
|
|---|