source: trunk/MagicSoft/Mars/mdatacheck/MFillAdcSpect.h@ 602

Last change on this file since 602 was 466, checked in by tbretz, 24 years ago
see Changelog
File size: 592 bytes
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
12class MParList;
13class MHistosAdc;
14class MRawEvtData;
15class MRawEvtPixelIter;
16
17class 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.