| Line | |
|---|
| 1 | #ifndef MFILLADCSPECT_H
|
|---|
| 2 | #define MFILLADCSPECT_H
|
|---|
| 3 |
|
|---|
| 4 | #ifndef MAGIC_H
|
|---|
| 5 | #include "MAGIC.h"
|
|---|
| 6 | #endif
|
|---|
| 7 |
|
|---|
| 8 | #ifndef MTASK_H
|
|---|
| 9 | #include "MTask.h"
|
|---|
| 10 | #endif
|
|---|
| 11 |
|
|---|
| 12 | class MParList;
|
|---|
| 13 | class MHistosAdc;
|
|---|
| 14 | class MRawEvtData;
|
|---|
| 15 | class MRawEvtPixelIter;
|
|---|
| 16 |
|
|---|
| 17 | class MFillAdcSpect : public MTask {
|
|---|
| 18 | private:
|
|---|
| 19 | MRawEvtData *fRawEvtData;
|
|---|
| 20 | MRawEvtPixelIter *fPixelIter ;
|
|---|
| 21 |
|
|---|
| 22 | MHistosAdc *fHistos ;
|
|---|
| 23 |
|
|---|
| 24 | public:
|
|---|
| 25 | MFillAdcSpect (const char *name=NULL, const char *title=NULL);
|
|---|
| 26 |
|
|---|
| 27 | Bool_t PreProcess(MParList *pList);
|
|---|
| 28 | Bool_t Process() ;
|
|---|
| 29 |
|
|---|
| 30 | // ClassDef(MFillAdcSpect, 1) // Task to read the raw data binary file
|
|---|
| 31 |
|
|---|
| 32 | };
|
|---|
| 33 |
|
|---|
| 34 | #endif
|
|---|
| 35 |
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.