source: trunk/MagicSoft/Mars/mraw/MRawEvtPixelIter.h@ 3706

Last change on this file since 3706 was 3495, checked in by gaug, 21 years ago
*** empty log message ***
File size: 3.5 KB
Line 
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
14class MRawEvtData;
15
16class MRawEvtPixelIter : public TObject
17{
18private:
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 Char_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
37public:
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 {
94 //
95 // return kTRUE the lo gains exist for the actual pixel, else return kFALSE
96 //
97 return fLoGainId && *fHiGainId==*fLoGainId;
98 }
99 Bool_t HasABFlag() const
100 {
101 //
102 // return kTRUE the lo gains exist for the actual pixel, else return kFALSE
103 //
104 return TESTBIT(fABFlags[GetPixelId()/8], GetPixelId()%8);
105 }
106 Byte_t GetABFlag() const
107 {
108 //
109 // return kTRUE the lo gains exist for the actual pixel, else return kFALSE
110 //
111 return (Byte_t)fABFlags[GetPixelId()/8];
112 }
113
114 Byte_t *GetLoGainSamples() const
115 {
116 //
117 // return a pointer to the fadc samples of the lo gains if they exist
118 // for the actual pixel, else return zero
119 //
120 return HasLoGain() ? fLoGainPos : NULL;
121 }
122
123 ULong_t GetSumLoGainSamples() const;
124 ULong_t GetSumSqrLoGainSamples() const;
125
126 void Reset();
127
128 void Draw(Option_t *t="GRAPH");
129
130 ClassDef(MRawEvtPixelIter, 0) // iterates over all pixels of one MRawEvtData object
131};
132
133#endif
Note: See TracBrowser for help on using the repository browser.