source: trunk/MagicSoft/Mars/manalysis/MHillasCalc.h@ 1268

Last change on this file since 1268 was 1203, checked in by rkb, 23 years ago
*** empty log message ***
  • Property svn:executable set to *
File size: 1.2 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;
27public:
28 MHillasCalc(const char *hil="MHillas", const char *name=NULL, const char *title=NULL);
29
30 Bool_t PreProcess(MParList *pList);
31 Bool_t Process();
32
33 ClassDef(MHillasCalc, 0) // Task to calculate Hillas parameters
34};
35
36#endif
Note: See TracBrowser for help on using the repository browser.