source: trunk/MagicSoft/Mars/manalysis/MHillasSrcCalc.h@ 1203

Last change on this file since 1203 was 1203, checked in by rkb, 23 years ago
*** empty log message ***
File size: 667 bytes
Line 
1#ifndef MARS_MHillasSrcCalc
2#define MARS_MHillasSrcCalc
3
4#ifndef MARS_MTask
5#include "MTask.h"
6#endif
7
8class MHillas;
9class MHillasSrc;
10class MSrcPosCam;
11
12class MHillasSrcCalc : public MTask
13{
14private:
15 MHillas *fHillas;
16 MSrcPosCam *fSrcPos;
17 MHillasSrc *fHillasSrc;
18
19 TString fSrcName;
20 TString fHillasName;
21
22public:
23 MHillasSrcCalc(const char *src="MSrcPosCam", const char *hil="MHillasSrc",
24 const char *name=NULL, const char *title=NULL);
25
26 Bool_t PreProcess(MParList *plist);
27 Bool_t Process();
28
29 ClassDef(MHillasSrcCalc, 0) // task to calculate the source position depandant hillas parameters
30};
31
32#endif
Note: See TracBrowser for help on using the repository browser.