source: trunk/MagicSoft/Mars/manalysis/MImgCleanStd.h@ 1471

Last change on this file since 1471 was 1471, checked in by tbretz, 22 years ago
*** empty log message ***
  • Property svn:executable set to *
File size: 915 bytes
Line 
1#ifndef MARS_MImgCleanStd
2#define MARS_MImgCleanStd
3
4#ifndef MARS_MGTask
5#include "MGTask.h"
6#endif
7
8class MGeomCam;
9class MCerPhotEvt;
10
11class MGGroupFrame;
12
13class MImgCleanStd : public MGTask
14{
15private:
16 const MGeomCam *fCam; //!
17 MCerPhotEvt *fEvt; //!
18
19 Float_t fCleanLvl1;
20 Float_t fCleanLvl2;
21
22 void CreateGuiElements(MGGroupFrame *f);
23
24public:
25 MImgCleanStd(const Float_t lvl1=3.0, const Float_t lvl2=2.5,
26 const char *name=NULL, const char *title=NULL);
27
28 Int_t CleanStep1();
29 void CleanStep2(Int_t max);
30 void CleanStep3();
31
32 Bool_t PreProcess(MParList *pList);
33 Bool_t Process();
34
35 void Print(Option_t *o="") const;
36 void SavePrimitive(ofstream &out, Option_t *o="");
37
38 Bool_t ProcessMessage(Int_t msg, Int_t submsg, Long_t param1, Long_t param2);
39
40 ClassDef(MImgCleanStd, 0) // task doing a standard image cleaning
41};
42
43#endif
44
Note: See TracBrowser for help on using the repository browser.