source: trunk/MagicSoft/Mars/msignal/MExtractedSignalCam.h@ 4970

Last change on this file since 4970 was 4274, checked in by merck, 20 years ago
*** empty log message ***
File size: 2.0 KB
Line 
1#ifndef MARS_MExtractedSignalCam
2#define MARS_MExtractedSignalCam
3
4#ifndef MARS_MParContainer
5#include "MParContainer.h"
6#endif
7
8#ifndef MARS_MCamEvent
9#include "MCamEvent.h"
10#endif
11
12class TClonesArray;
13class MExtractedSignalPix;
14
15class MExtractedSignalCam : public MParContainer, public MCamEvent
16{
17private:
18 TClonesArray *fArray; //-> FIXME: Change TClonesArray away from a pointer?
19
20 Byte_t fFirstUsedSliceHiGain;
21 Byte_t fFirstUsedSliceLoGain;
22
23 Byte_t fLastUsedSliceHiGain;
24 Byte_t fLastUsedSliceLoGain;
25
26 Float_t fUsedWindowHiGain;
27 Float_t fUsedWindowLoGain;
28
29public:
30
31 MExtractedSignalCam(const char *name=NULL, const char *title=NULL);
32 ~MExtractedSignalCam();
33
34 void Print(Option_t *o="") const;
35 void Clear(Option_t *o="");
36 void SetLogStream(MLog *lg);
37
38 void InitSize(const UInt_t i);
39 Int_t GetSize() const;
40
41 Float_t GetNumUsedHiGainFADCSlices() const { return fUsedWindowHiGain; }
42 Float_t GetNumUsedLoGainFADCSlices() const { return fUsedWindowLoGain; }
43
44 Byte_t GetFirstUsedSliceHiGain() const { return fFirstUsedSliceHiGain; }
45 Byte_t GetFirstUsedSliceLoGain() const { return fFirstUsedSliceLoGain; }
46
47 Byte_t GetLastUsedSliceHiGain() const { return fLastUsedSliceHiGain; }
48 Byte_t GetLastUsedSliceLoGain() const { return fLastUsedSliceLoGain; }
49
50 void SetUsedFADCSlices(Byte_t firsth, Byte_t lasth, Float_t winh,
51 Byte_t firstl, Byte_t lastl, Float_t winl)
52 {
53 fFirstUsedSliceHiGain = firsth;
54 fLastUsedSliceHiGain = lasth;
55 fUsedWindowHiGain = winh;
56 fFirstUsedSliceLoGain = firstl;
57 fLastUsedSliceLoGain = lastl;
58 fUsedWindowLoGain = winl;
59 }
60
61 MExtractedSignalPix &operator[](Int_t i);
62 const MExtractedSignalPix &operator[](Int_t i) const;
63
64 Bool_t GetPixelContent(Double_t &val, Int_t idx, const MGeomCam &cam, Int_t type=0) const;
65 void DrawPixelContent(Int_t num) const;
66
67 ClassDef(MExtractedSignalCam, 1) // Storage Container for extracted signals in the camera
68};
69
70#endif
71
Note: See TracBrowser for help on using the repository browser.