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

Last change on this file since 2779 was 2655, checked in by tbretz, 21 years ago
*** empty log message ***
File size: 3.4 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 GetNumPixels() const;
69
70 Byte_t *GetHiGainSamples() const
71 {
72 //
73 // return a pointer to the fadc samples of the hi gains
74 // WARNING: Don't forget to get the number of valid entries
75 // (GetNumSamples) to know how many entries of the array
76 // belong to the actual pixel
77 //
78 return fHiGainPos;
79 }
80
81 ULong_t GetSumHiGainSamples() const;
82 ULong_t GetSumSqrHiGainSamples() const;
83 Float_t GetVarHiGainSamples() const;
84
85 Byte_t GetMaxHiGainSample() const;
86 Byte_t GetMaxLoGainSample() const;
87 Byte_t GetIdxMaxHiGainSample() const;
88 Short_t GetIdxMaxLoGainSample() const;
89 Short_t GetIdxMaxHiLoGainSample() const;
90
91 Bool_t HasLoGain() const
92 {
93 //
94 // return kTRUE the lo gains exist for the actual pixel, else return kFALSE
95 //
96 return fLoGainId && *fHiGainId==*fLoGainId;
97 }
98 Bool_t HasABFlag() const
99 {
100 //
101 // return kTRUE the lo gains exist for the actual pixel, else return kFALSE
102 //
103 return TESTBIT(fABFlags[GetPixelId()/8], GetPixelId()%8);
104 }
105 Byte_t GetABFlag() const
106 {
107 //
108 // return kTRUE the lo gains exist for the actual pixel, else return kFALSE
109 //
110 return (Byte_t)fABFlags[GetPixelId()/8];
111 }
112
113 Byte_t *GetLoGainSamples() const
114 {
115 //
116 // return a pointer to the fadc samples of the lo gains if they exist
117 // for the actual pixel, else return zero
118 //
119 return HasLoGain() ? fLoGainPos : NULL;
120 }
121
122 ULong_t GetSumLoGainSamples() const;
123 ULong_t GetSumSqrLoGainSamples() const;
124
125 void Reset();
126
127 void Draw(Option_t *t="GRAPH");
128
129 ClassDef(MRawEvtPixelIter, 0) // iterates over all pixels of one MRawEvtData object
130};
131
132#endif
Note: See TracBrowser for help on using the repository browser.