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

Last change on this file since 2909 was 2909, 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 *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 ULong_t GetSumHiGainSamples() const;
80 ULong_t GetSumSqrHiGainSamples() const;
81 Float_t GetVarHiGainSamples() const;
82
83 Byte_t GetMaxHiGainSample() const;
84 Byte_t GetMaxLoGainSample() const;
85 Byte_t GetIdxMaxHiGainSample() const;
86 Short_t GetIdxMaxLoGainSample() const;
87 Short_t GetIdxMaxHiLoGainSample() const;
88
89 Bool_t HasLoGain() const
90 {
91 //
92 // return kTRUE the lo gains exist for the actual pixel, else return kFALSE
93 //
94 return fLoGainId && *fHiGainId==*fLoGainId;
95 }
96 Bool_t HasABFlag() const
97 {
98 //
99 // return kTRUE the lo gains exist for the actual pixel, else return kFALSE
100 //
101 return TESTBIT(fABFlags[GetPixelId()/8], GetPixelId()%8);
102 }
103 Byte_t GetABFlag() const
104 {
105 //
106 // return kTRUE the lo gains exist for the actual pixel, else return kFALSE
107 //
108 return (Byte_t)fABFlags[GetPixelId()/8];
109 }
110
111 Byte_t *GetLoGainSamples() const
112 {
113 //
114 // return a pointer to the fadc samples of the lo gains if they exist
115 // for the actual pixel, else return zero
116 //
117 return HasLoGain() ? fLoGainPos : NULL;
118 }
119
120 ULong_t GetSumLoGainSamples() const;
121 ULong_t GetSumSqrLoGainSamples() const;
122
123 void Reset();
124
125 void Draw(Option_t *t="GRAPH");
126
127 ClassDef(MRawEvtPixelIter, 0) // iterates over all pixels of one MRawEvtData object
128};
129
130#endif
Note: See TracBrowser for help on using the repository browser.