1 | #ifndef MARS_MRawEvtPixelIter
|
---|
2 | #define MARS_MRawEvtPixelIter
|
---|
3 | ///////////////////////////////////////////////////////////////////////////////
|
---|
4 | //
|
---|
5 | // MRawEvtPixelIter
|
---|
6 | //
|
---|
7 | // class to iterate over all pixels of one event.
|
---|
8 | //
|
---|
9 | ///////////////////////////////////////////////////////////////////////////////
|
---|
10 | #ifndef MARS_MAGIC
|
---|
11 | #include "MAGIC.h"
|
---|
12 | #endif
|
---|
13 |
|
---|
14 | class MRawEvtData;
|
---|
15 |
|
---|
16 | class MRawEvtPixelIter : public TObject
|
---|
17 | {
|
---|
18 | private:
|
---|
19 | UShort_t fNumHiGainEntry; //! actual number of entry in fHiGainPixId
|
---|
20 | UShort_t fNumLoGainEntry; //! actual number of entry in fLoGainPixId
|
---|
21 |
|
---|
22 | UShort_t *fHiGainId; //! actual entry of fHiGainPixId
|
---|
23 | UShort_t *fLoGainId; //! actual entry of fLoGainPixId
|
---|
24 |
|
---|
25 | Byte_t *fHiGainPos; //! pointer to hi-gain samples of actual pixel
|
---|
26 | Byte_t *fLoGainPos; //! pointer to lo-gain samples of actual pixel
|
---|
27 |
|
---|
28 | Byte_t *fABFlags; //! pointer to AB flags
|
---|
29 |
|
---|
30 | UShort_t fNumEntry;
|
---|
31 |
|
---|
32 | Byte_t fNumHiGainSamples; //!
|
---|
33 | Byte_t fNumLoGainSamples; //!
|
---|
34 |
|
---|
35 | MRawEvtData *fData; //! pointer to object which we are iterating
|
---|
36 |
|
---|
37 | public:
|
---|
38 | MRawEvtPixelIter(MRawEvtData *dat);
|
---|
39 |
|
---|
40 | MRawEvtData *Next();
|
---|
41 |
|
---|
42 | Bool_t Jump(UShort_t id)
|
---|
43 | {
|
---|
44 | //
|
---|
45 | // Jump to the pixel with the pixel-id ID
|
---|
46 | // If it doesn't exist return FALSE
|
---|
47 | //
|
---|
48 | Reset();
|
---|
49 | while (Next())
|
---|
50 | if (GetPixelId() == id)
|
---|
51 | return kTRUE;
|
---|
52 | return kFALSE;
|
---|
53 | }
|
---|
54 |
|
---|
55 | UShort_t GetPixelId() const
|
---|
56 | {
|
---|
57 | //
|
---|
58 | // return Id of actual pixel
|
---|
59 | //
|
---|
60 | return *fHiGainId;
|
---|
61 | }
|
---|
62 |
|
---|
63 | UShort_t GetNumEntry() const
|
---|
64 | {
|
---|
65 | return fNumHiGainEntry;
|
---|
66 | }
|
---|
67 |
|
---|
68 | Byte_t *GetHiGainSamples() const
|
---|
69 | {
|
---|
70 | //
|
---|
71 | // return a pointer to the fadc samples of the hi gains
|
---|
72 | // WARNING: Don't forget to get the number of valid entries
|
---|
73 | // (GetNumSamples) to know how many entries of the array
|
---|
74 | // belong to the actual pixel
|
---|
75 | //
|
---|
76 | return fHiGainPos;
|
---|
77 | }
|
---|
78 |
|
---|
79 | Byte_t GetNumHiGainSamples() const { return fNumHiGainSamples ; }
|
---|
80 | Byte_t GetNumLoGainSamples() const { return fNumLoGainSamples ; }
|
---|
81 |
|
---|
82 | ULong_t GetSumHiGainSamples() const;
|
---|
83 | ULong_t GetSumSqrHiGainSamples() const;
|
---|
84 | Float_t GetVarHiGainSamples() const;
|
---|
85 |
|
---|
86 | Byte_t GetMaxHiGainSample() const;
|
---|
87 | Byte_t GetMaxLoGainSample() const;
|
---|
88 | Byte_t GetIdxMaxHiGainSample() const;
|
---|
89 | Short_t GetIdxMaxLoGainSample(const Byte_t lofirst=0) const;
|
---|
90 | Short_t GetIdxMaxHiLoGainSample() const;
|
---|
91 |
|
---|
92 | Bool_t HasLoGain() const;
|
---|
93 | Bool_t IsABFlagValid() const { return fABFlags ? kTRUE : kFALSE; }
|
---|
94 | Bool_t HasABFlag() const
|
---|
95 | {
|
---|
96 | //
|
---|
97 | // return kTRUE the lo gains exist for the actual pixel, else return kFALSE
|
---|
98 | //
|
---|
99 | return fABFlags ? TESTBIT(fABFlags[GetPixelId()/8], GetPixelId()%8) : 0;
|
---|
100 | }
|
---|
101 | Byte_t GetABFlag() const
|
---|
102 | {
|
---|
103 | //
|
---|
104 | // return kTRUE the lo gains exist for the actual pixel, else return kFALSE
|
---|
105 | //
|
---|
106 | return fABFlags ? fABFlags[GetPixelId()/8] : 0;
|
---|
107 | }
|
---|
108 |
|
---|
109 | Byte_t *GetLoGainSamples() const
|
---|
110 | {
|
---|
111 | //
|
---|
112 | // return a pointer to the fadc samples of the lo gains if they exist
|
---|
113 | // for the actual pixel, else return zero
|
---|
114 | //
|
---|
115 | return HasLoGain() ? fLoGainPos : NULL;
|
---|
116 | }
|
---|
117 |
|
---|
118 | ULong_t GetSumLoGainSamples() const;
|
---|
119 | ULong_t GetSumSqrLoGainSamples() const;
|
---|
120 |
|
---|
121 | void Reset();
|
---|
122 |
|
---|
123 | void Draw(Option_t *t="GRAPH");
|
---|
124 |
|
---|
125 | ClassDef(MRawEvtPixelIter, 0) // iterates over all pixels of one MRawEvtData object
|
---|
126 | };
|
---|
127 |
|
---|
128 | #endif
|
---|