Line | |
---|
1 | #ifndef MARS_MCameraSmooth
|
---|
2 | #define MARS_MCameraSmooth
|
---|
3 |
|
---|
4 | #ifndef MARS_MTask
|
---|
5 | #include "MTask.h"
|
---|
6 | #endif
|
---|
7 |
|
---|
8 | #ifndef ROOT_TArrayS
|
---|
9 | #include <TArrayS.h>
|
---|
10 | #endif
|
---|
11 |
|
---|
12 | class MGeomCam;
|
---|
13 | class MCerPhotEvt;
|
---|
14 | class MBlindPixels;
|
---|
15 |
|
---|
16 | class MCameraSmooth : public MTask
|
---|
17 | {
|
---|
18 | private:
|
---|
19 | MCerPhotEvt *fEvt; //! Pointer to data to smooth
|
---|
20 | MGeomCam *fGeomCam; //! Camera geometry
|
---|
21 |
|
---|
22 | Byte_t fCounts; // number of smoothing loops
|
---|
23 | Bool_t fUseCentralPixel; // use also the central pixel
|
---|
24 |
|
---|
25 | public:
|
---|
26 | MCameraSmooth(Byte_t cnt=1, const char *name=NULL, const char *title=NULL);
|
---|
27 |
|
---|
28 | void SetUseCetralPixel(Bool_t b=kTRUE) { fUseCentralPixel=kTRUE; }
|
---|
29 |
|
---|
30 | Bool_t PreProcess(MParList *pList);
|
---|
31 | Bool_t Process();
|
---|
32 |
|
---|
33 | ClassDef(MCameraSmooth, 0) // task to smooth the camera contants
|
---|
34 | };
|
---|
35 |
|
---|
36 | #endif
|
---|
37 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.