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

Last change on this file since 662 was 662, checked in by tbretz, 24 years ago
*** empty log message ***
File size: 2.3 KB
Line 
1#ifndef MRAWEVTPIXELITER_H
2#define MRAWEVTPIXELITER_H
3///////////////////////////////////////////////////////////////////////////////
4//
5// MRawEvtPixelIter
6//
7// class to iterate over all pixels of one event.
8//
9///////////////////////////////////////////////////////////////////////////////
10#ifndef MAGIC_H
11#include "MAGIC.h"
12#endif
13
14class MRawEvtData;
15
16class MRawEvtPixelIter
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 UShort_t fNumEntry;
29
30 MRawEvtData *fData; //! pointer to object which we are iterating
31
32public:
33 MRawEvtPixelIter(MRawEvtData *dat) : fData(dat)
34 {
35 Reset();
36 }
37
38 MRawEvtData *Next();
39
40 UShort_t GetPixelId() const
41 {
42 //
43 // return Id of actual pixel
44 //
45 return *fHiGainId;
46 }
47
48 UShort_t GetNumEntry() const
49 {
50 return fNumHiGainEntry;
51 }
52
53 Byte_t GetNumPixels() const
54 {
55 return fData->GetNumPixels();
56 }
57
58 Byte_t *GetHiGainFadcSamples() const
59 {
60 //
61 // return a pointer to the fadc samples of the hi gains
62 // WARNING: Don't forget to get the number of valid entries
63 // (GetNumSamples) to know how many entries of the array
64 // belong to the actual pixel
65 //
66 return fHiGainPos;
67 }
68
69 ULong_t GetSumHiGainFadcSamples() const;
70
71 Bool_t IsLoGain() const
72 {
73 //
74 // return kTRUE the lo gains exist for the actual pixel, else return kFALSE
75 //
76 return *fHiGainId==*fLoGainId;
77 }
78
79 Byte_t *GetLoGainFadcSamples() const
80 {
81 //
82 // return a pointer to the fadc samples of the lo gains if they exist
83 // for the actual pixel, else return zero
84 //
85 return IsLoGain() ? fLoGainPos : NULL;
86 }
87
88 ULong_t GetSumLoGainFadcSamples() const;
89
90 void Reset();
91
92 void Draw(Option_t *t="GRAPH");
93
94 ClassDef(MRawEvtPixelIter, 1) // iterates over all pixels of one MRawEvtData object
95};
96
97#endif
Note: See TracBrowser for help on using the repository browser.