source: trunk/MagicSoft/Mars/mbadpixels/MBadPixelsCalc.h@ 4586

Last change on this file since 4586 was 4586, checked in by hbartko, 20 years ago
*** empty log message ***
File size: 1.1 KB
Line 
1#ifndef MARS_MBadPixelsCalc
2#define MARS_MBadPixelsCalc
3
4#ifndef MARS_MTask
5#include "MTask.h"
6#endif
7
8class MBadPixelsCam;
9//class MSigmabar;
10class MGeomCam;
11class MPedPhotCam;
12
13class MBadPixelsCalc : public MTask
14{
15private:
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 TString fNamePedPhotContainer; // name of the 'MPedPhotCam' container
24
25 // void CheckPedestalRMS() const;
26 Bool_t CheckPedestalRms() const;
27
28 Int_t PreProcess(MParList *pList);
29 Int_t Process();
30
31public:
32 MBadPixelsCalc(const char *name=NULL, const char *title=NULL);
33
34 void SetPedestalLevel(Float_t f) { fPedestalLevel=f; }
35 void SetNamePedPhotContainer(const char *name) { fNamePedPhotContainer = name; }
36
37 ClassDef(MBadPixelsCalc, 1) // Task to find bad pixels (star, broken pixels, etc)
38};
39
40#endif
41
42
43
44
Note: See TracBrowser for help on using the repository browser.