|
Last change
on this file since 854 was 847, checked in by tbretz, 24 years ago |
|
*** empty log message ***
|
-
Property svn:executable
set to
*
|
|
File size:
676 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 |
|
|---|
| 11 | class MGeomCam;
|
|---|
| 12 | class MCerPhotEvt;
|
|---|
| 13 |
|
|---|
| 14 | class MImgCleanStd : public MTask
|
|---|
| 15 | {
|
|---|
| 16 | private:
|
|---|
| 17 | MGeomCam *fCam;
|
|---|
| 18 | MCerPhotEvt *fEvt;
|
|---|
| 19 |
|
|---|
| 20 | Float_t fCleanLvl1;
|
|---|
| 21 | Float_t fCleanLvl2;
|
|---|
| 22 |
|
|---|
| 23 | public:
|
|---|
| 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.