source: trunk/MagicSoft/Mars/mimage/MHillasCalc.h@ 1940

Last change on this file since 1940 was 1940, checked in by tbretz, 21 years ago
*** empty log message ***
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
16class MGeomCam;
17class MCerPhotEvt;
18class MHillas;
19
20class 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
33public:
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.