source: trunk/MagicSoft/Mars/mhist/MFillHFadc.h@ 891

Last change on this file since 891 was 852, checked in by tbretz, 23 years ago
*** empty log message ***
  • Property svn:executable set to *
File size: 653 bytes
Line 
1#ifndef MFILLHFADC_H
2#define MFILLHFADC_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 MHFadcCam;
14class MRawEvtData;
15
16class MFillHFadc : public MTask
17{
18private:
19 MRawEvtData *fRawEvtData; // The raw event data from which the spektrum is created
20 MHFadcCam *fHistos ; // The histogram container into which holds the spektrum
21
22public:
23 MFillHFadc (const char *name=NULL, const char *title=NULL);
24
25 Bool_t PreProcess(MParList *pList);
26 Bool_t Process();
27 Bool_t PostProcess();
28
29 ClassDef(MFillHFadc, 0) // Task to fill the fadc data into histograms
30};
31
32#endif
33
Note: See TracBrowser for help on using the repository browser.