source: trunk/MagicSoft/Mars/mbadpixels/MBadPixelsCam.h@ 7072

Last change on this file since 7072 was 5463, checked in by gaug, 20 years ago
*** empty log message ***
File size: 2.2 KB
Line 
1#ifndef MARS_MBadPixelsCam
2#define MARS_MBadPixelsCam
3
4#ifndef MARS_MBadPixelsPix
5#include "MBadPixelsPix.h"
6#endif
7#ifndef MARS_MCamEvent
8#include "MCamEvent.h"
9#endif
10
11class MGeomPix;
12class TClonesArray;
13
14class MBadPixelsCam : public MParContainer, public MCamEvent
15{
16private:
17 TClonesArray *fArray; //->
18
19 Short_t GetNumSuitableNeighbors(MBadPixelsPix::UnsuitableType_t type, const MGeomPix &pix) const;
20 Short_t GetNumMaxCluster(MBadPixelsPix::UnsuitableType_t type, TObjArray &list, Int_t idx, Int_t aidx) const;
21
22 void PrintBadPixels( MBadPixelsPix::UncalibratedType_t typ, const char *text) const;
23
24public:
25 MBadPixelsCam(const char *name=NULL, const char *title=NULL);
26 MBadPixelsCam(const MBadPixelsCam &cam);
27 ~MBadPixelsCam();
28
29 void Reset();
30 void Clear(Option_t *o="");
31 void Print(Option_t *o="") const;
32 void Copy(TObject &object) const;
33
34 void InitSize(const UInt_t i);
35 Int_t GetSize() const;
36
37 MBadPixelsPix &operator[](Int_t i);
38 const MBadPixelsPix &operator[](Int_t i) const;
39
40 void Merge(const MBadPixelsCam &cam);
41
42 Short_t GetNumUnsuitable(MBadPixelsPix::UnsuitableType_t type, const MGeomCam *geom, Int_t aidx=-1) const;
43 Short_t GetNumUnsuitable(MBadPixelsPix::UnsuitableType_t type) const { return GetNumUnsuitable(type, 0); }
44 Short_t GetNumIsolated(MBadPixelsPix::UnsuitableType_t type, const MGeomCam &geom, Int_t aidx=-1) const;
45 Short_t GetNumIsolated(const MGeomCam &geom, Int_t aidx=-1) const { return GetNumIsolated(MBadPixelsPix::kUnsuitableRun, geom, aidx); }
46 Short_t GetNumMaxCluster(MBadPixelsPix::UnsuitableType_t type, const MGeomCam &geom, Int_t aidx=-1) const;
47 Short_t GetNumMaxCluster(const MGeomCam &geom, Int_t aidx=-1) { return GetNumMaxCluster(MBadPixelsPix::kUnsuitableRun, geom, aidx); }
48
49 void AsciiRead(istream &fin, UInt_t run);
50 void AsciiRead(istream &fin) { AsciiRead(fin, 0); }
51 Bool_t AsciiWrite(ostream &out, UInt_t run) const;
52 Bool_t AsciiWrite(ostream &out) const { return AsciiWrite(out, 0); }
53
54 Bool_t GetPixelContent(Double_t &val, Int_t idx, const MGeomCam &cam, Int_t type=0) const;
55 void DrawPixelContent(Int_t num) const;
56
57 ClassDef(MBadPixelsCam, 1) //Storage container to store bad pixel of the camera...
58};
59
60#endif
61
Note: See TracBrowser for help on using the repository browser.