|
Last change
on this file since 18815 was 12630, checked in by tbretz, 14 years ago |
|
Removed an obsolete fGeomCam; make sure that everything is initialized properly
|
|
File size:
939 bytes
|
| 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 MRawRunHeader;
|
|---|
| 13 | class MSignalCam;
|
|---|
| 14 |
|
|---|
| 15 | class MCalibrateRelTimes : public MTask
|
|---|
| 16 | {
|
|---|
| 17 | private:
|
|---|
| 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 | UShort_t fFreq; //! [MHz] Sampling Frequency
|
|---|
| 24 |
|
|---|
| 25 | Int_t PreProcess(MParList *pList);
|
|---|
| 26 | Bool_t ReInit(MParList *pList);
|
|---|
| 27 | Int_t Process();
|
|---|
| 28 |
|
|---|
| 29 | public:
|
|---|
| 30 |
|
|---|
| 31 | MCalibrateRelTimes(const char *name=NULL, const char *title=NULL);
|
|---|
| 32 |
|
|---|
| 33 | ClassDef(MCalibrateRelTimes, 0) // Task to calculate calibrated relative arrival times
|
|---|
| 34 | };
|
|---|
| 35 |
|
|---|
| 36 |
|
|---|
| 37 | #endif
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.