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