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