| Line | |
|---|
| 1 | #ifndef MARS_MMuonSearchParCalc
|
|---|
| 2 | #define MARS_MMuonSearchParCalc
|
|---|
| 3 |
|
|---|
| 4 | #ifndef MARS_MTask
|
|---|
| 5 | #include "MTask.h"
|
|---|
| 6 | #endif
|
|---|
| 7 |
|
|---|
| 8 | class MHillas;
|
|---|
| 9 | class MMuonSearchPar;
|
|---|
| 10 | class MGeomCam;
|
|---|
| 11 | class MCerPhotEvt;
|
|---|
| 12 |
|
|---|
| 13 | class MMuonSearchParCalc : public MTask
|
|---|
| 14 | {
|
|---|
| 15 | private:
|
|---|
| 16 | MGeomCam *fGeomCam;
|
|---|
| 17 | MCerPhotEvt *fCerPhotEvt;
|
|---|
| 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 | TString fMuparName;
|
|---|
| 22 | TString fHillasInput;
|
|---|
| 23 | TString fCerPhotName;
|
|---|
| 24 |
|
|---|
| 25 | Int_t PreProcess(MParList *plist);
|
|---|
| 26 | Int_t Process();
|
|---|
| 27 |
|
|---|
| 28 | public:
|
|---|
| 29 | MMuonSearchParCalc(const char *mupar="MMuonSearchPar",
|
|---|
| 30 | const char *name=NULL, const char *title=NULL);
|
|---|
| 31 |
|
|---|
| 32 | void SetInput(TString hilname) { fHillasInput = hilname; }
|
|---|
| 33 |
|
|---|
| 34 | void SetNameCerPhotEvt(const char *name) { fCerPhotName = name; }
|
|---|
| 35 |
|
|---|
| 36 | ClassDef(MMuonSearchParCalc, 0) // task to calculate muon parameters
|
|---|
| 37 | };
|
|---|
| 38 |
|
|---|
| 39 | #endif
|
|---|
| 40 |
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.