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

Last change on this file since 701 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
16class MGeomCam;
17class MCerPhotEvt;
18class MHillas;
19
20class 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
26public:
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.