| Line | |
|---|
| 1 | #ifndef MARS_MBadPixelsCalc
|
|---|
| 2 | #define MARS_MBadPixelsCalc
|
|---|
| 3 |
|
|---|
| 4 | #ifndef MARS_MTask
|
|---|
| 5 | #include "MTask.h"
|
|---|
| 6 | #endif
|
|---|
| 7 |
|
|---|
| 8 | class MBadPixelsCam;
|
|---|
| 9 | class MSigmabar;
|
|---|
| 10 | class MGeomCam;
|
|---|
| 11 | class MPedPhotCam;
|
|---|
| 12 |
|
|---|
| 13 | class MBadPixelsCalc : public MTask
|
|---|
| 14 | {
|
|---|
| 15 | private:
|
|---|
| 16 | MGeomCam *fGeomCam; //! Input container storing the pixel sizes
|
|---|
| 17 | MSigmabar *fSigmabar; //! Input container storing mean pedestal rms of the camera
|
|---|
| 18 | MPedPhotCam *fPedPhotCam; //! Input container storing the pedestal and pedestal rms of all pixels
|
|---|
| 19 |
|
|---|
| 20 | MBadPixelsCam *fBadPixels; //! Output container holding the bad pixels
|
|---|
| 21 |
|
|---|
| 22 | Float_t fPedestalLevel;
|
|---|
| 23 |
|
|---|
| 24 | void CheckPedestalRMS() const;
|
|---|
| 25 | Bool_t CheckPedestalRms() const;
|
|---|
| 26 |
|
|---|
| 27 | Int_t PreProcess(MParList *pList);
|
|---|
| 28 | Int_t Process();
|
|---|
| 29 |
|
|---|
| 30 | public:
|
|---|
| 31 | MBadPixelsCalc(const char *name=NULL, const char *title=NULL);
|
|---|
| 32 |
|
|---|
| 33 | void SetPedestalLevel(Float_t f) { fPedestalLevel=f; }
|
|---|
| 34 |
|
|---|
| 35 | ClassDef(MBadPixelsCalc, 1) // Task to find bad pixels (star, broken pixels, etc)
|
|---|
| 36 | };
|
|---|
| 37 |
|
|---|
| 38 | #endif
|
|---|
| 39 |
|
|---|
| 40 |
|
|---|
| 41 |
|
|---|
| 42 |
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.