Last change
on this file since 695 was 695, checked in by tbretz, 24 years ago |
*** empty log message ***
|
-
Property svn:executable
set to
*
|
File size:
1.1 KB
|
Line | |
---|
1 | #ifndef MHILLASCALC_H
|
---|
2 | #define MHILLASCALC_H
|
---|
3 |
|
---|
4 | /////////////////////////////////////////////////////////////////////////////
|
---|
5 | // //
|
---|
6 | // MHillasCalkc //
|
---|
7 | // //
|
---|
8 | // Task to calculate Hillas Parameters //
|
---|
9 | // //
|
---|
10 | /////////////////////////////////////////////////////////////////////////////
|
---|
11 |
|
---|
12 | #ifndef MTASK_H
|
---|
13 | #include "MTask.h"
|
---|
14 | #endif
|
---|
15 |
|
---|
16 | class MGeomCam;
|
---|
17 | class MCerPhotEvt;
|
---|
18 | class MHillas;
|
---|
19 |
|
---|
20 | class MHillasCalc : public MTask
|
---|
21 | {
|
---|
22 | MGeomCam *fGeomCam; // Camera Geometry used to calculate Hillas
|
---|
23 | MCerPhotEvt *fCerPhotEvt; // Cerenkov Photon Event used for calculation
|
---|
24 | MHillas *fHillas; // ouput container to store result
|
---|
25 |
|
---|
26 | public:
|
---|
27 | MHillasCalc(const char *name=NULL, const char *title=NULL);
|
---|
28 |
|
---|
29 | Bool_t PreProcess(MParList *pList);
|
---|
30 | Bool_t Process();
|
---|
31 |
|
---|
32 | ClassDef(MHillasCalc, 0) // Task to calculate Hillas parameters
|
---|
33 | };
|
---|
34 |
|
---|
35 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.