source: trunk/Mars/mmuon/MMuonSearchParCalc.h@ 14910

Last change on this file since 14910 was 14896, checked in by tbretz, 12 years ago
Added MCalibrateFact and MCalibrateDrsTimes
File size: 834 bytes
Line 
1#ifndef MARS_MMuonSearchParCalc
2#define MARS_MMuonSearchParCalc
3
4#ifndef MARS_MTask
5#include "MTask.h"
6#endif
7
8class MHillas;
9class MMuonSearchPar;
10class MGeomCam;
11class MSignalCam;
12
13class MMuonSearchParCalc : public MTask
14{
15private:
16 MGeomCam *fGeomCam; //!
17 MSignalCam *fSignalCam; //!
18 MHillas *fHillas; //! Pointer to the source independent hillas parameters
19 MMuonSearchPar *fMuonPar; //! Pointer to the output container for the new image parameters
20
21 Bool_t fUseFactAlgorithm;
22
23 Int_t PreProcess(MParList *plist);
24 Int_t Process();
25
26public:
27 MMuonSearchParCalc(const char *name=NULL, const char *title=NULL);
28
29 void SetUseFactAlgorithm(Bool_t b=kTRUE) { fUseFactAlgorithm = kTRUE; }
30
31 ClassDef(MMuonSearchParCalc, 0) // task to calculate muon parameters
32};
33
34#endif
35
Note: See TracBrowser for help on using the repository browser.