Last change
on this file since 973 was 859, checked in by tbretz, 23 years ago |
*** empty log message ***
|
-
Property svn:executable
set to
*
|
File size:
549 bytes
|
Line | |
---|
1 | #ifndef MFILLHSTARMAP_H
|
---|
2 | #define MFILLHSTARMAP_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 MHStarMap;
|
---|
14 | class MHillas;
|
---|
15 |
|
---|
16 | class MFillHStarMap : public MTask
|
---|
17 | {
|
---|
18 | private:
|
---|
19 | const MHillas *fEvt;
|
---|
20 | MHStarMap *fHistos ;
|
---|
21 |
|
---|
22 | public:
|
---|
23 | MFillHStarMap(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(MFillHStarMap, 0) // Task to fill a 2-dim histogram by the Hillas parameters
|
---|
30 | };
|
---|
31 |
|
---|
32 | #endif
|
---|
33 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.