| Line | |
|---|
| 1 | #ifndef MARS_MArrivalTimeCalc
|
|---|
| 2 | #define MARS_MArrivalTimeCalc
|
|---|
| 3 |
|
|---|
| 4 | #ifndef MARS_MTask
|
|---|
| 5 | #include "MTask.h"
|
|---|
| 6 | #endif
|
|---|
| 7 |
|
|---|
| 8 | class MRawEvtData;
|
|---|
| 9 | class MRawRunHeader;
|
|---|
| 10 | class MArrivalTimeCam;
|
|---|
| 11 | class MPedestalCam;
|
|---|
| 12 | class MArrivalTimeCalc : public MTask
|
|---|
| 13 | {
|
|---|
| 14 |
|
|---|
| 15 | MRawEvtData *fRawEvt; // raw event data (time slices)
|
|---|
| 16 | MRawRunHeader *fRunHeader; // RunHeader information
|
|---|
| 17 | MPedestalCam *fPedestals; // pedestal information
|
|---|
| 18 |
|
|---|
| 19 | MArrivalTimeCam *fArrTime; // Container with the photons arrival times
|
|---|
| 20 |
|
|---|
| 21 | Int_t PreProcess(MParList *pList);
|
|---|
| 22 | Bool_t ReInit(MParList *pList);
|
|---|
| 23 | Int_t Process();
|
|---|
| 24 | Int_t PostProcess() {return kTRUE;}
|
|---|
| 25 |
|
|---|
| 26 | Float_t Calc(const Byte_t *fadcSamples, const Short_t nslices, const UInt_t idx);
|
|---|
| 27 |
|
|---|
| 28 | public:
|
|---|
| 29 | MArrivalTimeCalc(const char *name=NULL, const char *title=NULL);
|
|---|
| 30 | ~MArrivalTimeCalc(){}
|
|---|
| 31 |
|
|---|
| 32 | ClassDef(MArrivalTimeCalc, 0) // Task to calculate Arrival Times from raw data
|
|---|
| 33 | };
|
|---|
| 34 |
|
|---|
| 35 | #endif
|
|---|
| 36 |
|
|---|
| 37 |
|
|---|
| 38 |
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.