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

Last change on this file since 857 was 857, checked in by tbretz, 23 years ago
*** empty log message ***
  • Property svn:executable set to *
File size: 685 bytes
Line 
1#ifndef MIMGCLEANSTD_H
2#define MIMGCLEANSTD_H
3
4#ifndef MAGIC_h
5#include "MAGIC.h"
6#endif
7#ifndef MPARCONTAINER_H
8#include "MTask.h"
9#endif
10
11class MGeomCam;
12class MCerPhotEvt;
13
14class MImgCleanStd : public MTask
15{
16private:
17 const MGeomCam *fCam;
18 MCerPhotEvt *fEvt;
19
20 Float_t fCleanLvl1;
21 Float_t fCleanLvl2;
22
23public:
24 MImgCleanStd(const Float_t lvl1=3.0, const Float_t lvl2=2.5,
25 const char *name=NULL, const char *title=NULL);
26
27 void CleanStep1();
28 void CleanStep2();
29 void CleanStep3();
30
31 Bool_t PreProcess (MParList *pList);
32 Bool_t Process();
33
34 ClassDef(MImgCleanStd, 0) // task doing a standard image cleaning
35};
36
37#endif
38
Note: See TracBrowser for help on using the repository browser.