Line | |
---|
1 | #ifndef MARS_MIslandCalc
|
---|
2 | #define MARS_MIslandCalc
|
---|
3 |
|
---|
4 | #ifndef MARS_MGTask
|
---|
5 | #include "MGTask.h"
|
---|
6 | #endif
|
---|
7 |
|
---|
8 | #ifndef ROOT_TArrayF
|
---|
9 | #include <TArrayF.h>
|
---|
10 | #endif
|
---|
11 |
|
---|
12 | class MGeomCam;
|
---|
13 | class MSigmabar;
|
---|
14 | class MCerPhotPix;
|
---|
15 | class MCerPhotEvt;
|
---|
16 | class MPedestalCam;
|
---|
17 | class MIslands;
|
---|
18 |
|
---|
19 | class MIslandCalc : public MGTask
|
---|
20 | {
|
---|
21 | private:
|
---|
22 | const MGeomCam *fCam; //!
|
---|
23 | MCerPhotEvt *fEvt; //!
|
---|
24 | MSigmabar *fSgb; //!
|
---|
25 | MPedestalCam *fPed; //!
|
---|
26 |
|
---|
27 | MIslands *fIsl; //! output container to store result
|
---|
28 |
|
---|
29 | Int_t PreProcess(MParList *plist);
|
---|
30 | Int_t Process();
|
---|
31 |
|
---|
32 | public:
|
---|
33 | MIslandCalc(const char *name=NULL, const char *title=NULL);
|
---|
34 |
|
---|
35 | ClassDef(MIslandCalc, 0) // task doing the image cleaning
|
---|
36 | };
|
---|
37 |
|
---|
38 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.