Last change
on this file since 733 was 447, checked in by harald, 24 years ago |
Bringing the sources for the octobertest under CVS controll.
(november, 3rd, 2000)
|
-
Property svn:executable
set to
*
|
File size:
681 bytes
|
Line | |
---|
1 | #ifndef MRAWPIXEL_H
|
---|
2 | #define MRAWPIXEL_H
|
---|
3 |
|
---|
4 | #include "Magic.h"
|
---|
5 |
|
---|
6 | #include "TObject.h"
|
---|
7 |
|
---|
8 | class MRawPixel : public TObject
|
---|
9 | {
|
---|
10 | private:
|
---|
11 | UShort_t PixelId; // Identification of PixelNumber and gain branch
|
---|
12 | UChar_t PixelStatus; // The Status of the pixel
|
---|
13 | UChar_t Fadc[kFADC_SLICES]; // The values of fadc-slices.
|
---|
14 |
|
---|
15 | public:
|
---|
16 | MRawPixel();
|
---|
17 | MRawPixel(UShort_t);
|
---|
18 | MRawPixel(UShort_t, UChar_t, UChar_t *);
|
---|
19 |
|
---|
20 | ~MRawPixel();
|
---|
21 |
|
---|
22 | void Clear(Option_t * t = NULL);
|
---|
23 | void Print(Option_t * t = NULL);
|
---|
24 |
|
---|
25 | UShort_t GetPixelId();
|
---|
26 | UChar_t *GetPixelData();
|
---|
27 | UChar_t GetFadcSlice(Int_t);
|
---|
28 |
|
---|
29 | ClassDef(MRawPixel, 1)
|
---|
30 | }; // end of class definition of MRawPixel
|
---|
31 |
|
---|
32 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.