Line | |
---|
1 | #ifndef MARS_MCalibrateRelTimes
|
---|
2 | #define MARS_MCalibrateRelTimes
|
---|
3 |
|
---|
4 | #ifndef MARS_MTask
|
---|
5 | #include "MTask.h"
|
---|
6 | #endif
|
---|
7 |
|
---|
8 | class MGeomCam;
|
---|
9 | class MBadPixelsCam;
|
---|
10 | class MCalibrationRelTimeCam;
|
---|
11 | class MArrivalTimeCam;
|
---|
12 | class MSignalCam;
|
---|
13 |
|
---|
14 | class MCalibrateRelTimes : public MTask
|
---|
15 | {
|
---|
16 | private:
|
---|
17 | MGeomCam *fGeomCam; // Camera geometry container
|
---|
18 | MCalibrationRelTimeCam *fCalibrations; // Calibration rel. time constants
|
---|
19 | MBadPixelsCam *fBadPixels; // Bad Pixels information
|
---|
20 | MArrivalTimeCam *fSignals; // Extracted Arrival Time
|
---|
21 | MSignalCam *fArrivalTime; // Calibrated arrival times
|
---|
22 |
|
---|
23 | Int_t PreProcess(MParList *pList);
|
---|
24 | Int_t Process();
|
---|
25 |
|
---|
26 | public:
|
---|
27 |
|
---|
28 | MCalibrateRelTimes(const char *name=NULL, const char *title=NULL);
|
---|
29 |
|
---|
30 | ClassDef(MCalibrateRelTimes, 0) // Task to calculate calibrated relative arrival times
|
---|
31 | };
|
---|
32 |
|
---|
33 |
|
---|
34 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.