source: trunk/MagicSoft/Mars/mhist/MFillHHillas.h@ 879

Last change on this file since 879 was 859, checked in by tbretz, 23 years ago
*** empty log message ***
  • Property svn:executable set to *
File size: 534 bytes
Line 
1#ifndef MFILLHHILLAS_H
2#define MFILLHHILLAS_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 MHHillas;
14class MHillas;
15
16class MFillHHillas : public MTask {
17 private:
18 const MHillas *fEvt;
19 MHHillas *fHistos ;
20
21 public:
22 MFillHHillas (const char *name=NULL, const char *title=NULL);
23
24 Bool_t PreProcess(MParList *pList);
25 Bool_t Process();
26 Bool_t PostProcess();
27
28 ClassDef(MFillHHillas, 0) // Task to fill the Hillas parameters into histograms
29};
30
31#endif
32
Note: See TracBrowser for help on using the repository browser.