| 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 MCalibrationIntensityQECam;
|
|---|
| 15 | class MCalibrationIntensityRelTimeCam;
|
|---|
| 16 | class MCalibColorSteer : public MTask
|
|---|
| 17 | {
|
|---|
| 18 | private:
|
|---|
| 19 |
|
|---|
| 20 | MRawEvtHeader *fHeader;
|
|---|
| 21 | MGeomCam *fGeom;
|
|---|
| 22 | MParList *fParList;
|
|---|
| 23 | MCalibrationIntensityChargeCam *fIntensCharge;
|
|---|
| 24 | MCalibrationIntensityQECam *fIntensQE;
|
|---|
| 25 | MCalibrationIntensityRelTimeCam *fIntensRelTime;
|
|---|
| 26 | MCalibrationChargeCalc *fChargeCalc;
|
|---|
| 27 | MCalibrationRelTimeCalc *fRelTimeCalc;
|
|---|
| 28 |
|
|---|
| 29 | UInt_t fPattern;
|
|---|
| 30 |
|
|---|
| 31 | Int_t PreProcess(MParList *pList);
|
|---|
| 32 | Int_t Process();
|
|---|
| 33 |
|
|---|
| 34 | Bool_t ReInitialize();
|
|---|
| 35 | Bool_t Finalize(const char* name);
|
|---|
| 36 | const char* GetNamePattern();
|
|---|
| 37 |
|
|---|
| 38 | public:
|
|---|
| 39 |
|
|---|
| 40 | MCalibColorSteer(const char *name=NULL, const char *title=NULL);
|
|---|
| 41 | ~MCalibColorSteer() {}
|
|---|
| 42 |
|
|---|
| 43 | ClassDef(MCalibColorSteer, 1) // Task to steer the processing of multiple calibration colours
|
|---|
| 44 | };
|
|---|
| 45 |
|
|---|
| 46 | #endif
|
|---|
| 47 |
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.