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