Line | |
---|
1 | #ifndef MARS_MPedestalWorkaround
|
---|
2 | #define MARS_MPedestalWorkaround
|
---|
3 |
|
---|
4 | /////////////////////////////////////////////////////////////////////////////
|
---|
5 | // //
|
---|
6 | // MPedestalWorkaround //
|
---|
7 | // //
|
---|
8 | // Temporary copy of pedestal values and RMS into MPedestalCam from //
|
---|
9 | // MPedPhotCam in order to have the pedestal RMS in units of number of //
|
---|
10 | // photons //
|
---|
11 | // //
|
---|
12 | /////////////////////////////////////////////////////////////////////////////
|
---|
13 | #ifndef MARS_MTask
|
---|
14 | #include "MTask.h"
|
---|
15 | #endif
|
---|
16 |
|
---|
17 | class MPedestalCam;
|
---|
18 | class MPedPhotCam;
|
---|
19 | class MGeomCam;
|
---|
20 | class MParList;
|
---|
21 |
|
---|
22 |
|
---|
23 | class MPedestalWorkaround : public MTask
|
---|
24 | {
|
---|
25 | private:
|
---|
26 |
|
---|
27 | MPedestalCam *fPed; //
|
---|
28 | MPedPhotCam *fPedPhot; //
|
---|
29 | MGeomCam *fCam; //
|
---|
30 |
|
---|
31 | Int_t PreProcess(MParList *pList);
|
---|
32 | Int_t Process();
|
---|
33 | Int_t PostProcess();
|
---|
34 |
|
---|
35 | public:
|
---|
36 | MPedestalWorkaround(const char *name=NULL, const char *title=NULL);
|
---|
37 |
|
---|
38 | ClassDef(MPedestalWorkaround, 0) // Task to copy pedestal RMS
|
---|
39 | };
|
---|
40 |
|
---|
41 | #endif
|
---|
42 |
|
---|
43 |
|
---|
44 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.