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

Last change on this file since 691 was 666, checked in by tbretz, 24 years ago
*** empty log message ***
File size: 538 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;
15
16class MFillAdcSpect : public MTask {
17 private:
18 MRawEvtData *fRawEvtData;
19
20 MHistosAdc *fHistos ;
21
22 public:
23 MFillAdcSpect (const char *name=NULL, const char *title=NULL);
24
25 Bool_t PreProcess(MParList *pList);
26 Bool_t Process() ;
27
28 ClassDef(MFillAdcSpect, 1) // Task to fill a MHistosAdc Container with data
29
30};
31
32#endif
33
Note: See TracBrowser for help on using the repository browser.