Line | |
---|
1 | #ifndef MARS_MCameraCentralPix
|
---|
2 | #define MARS_MCameraCentralPix
|
---|
3 |
|
---|
4 | #ifndef MARS_MParContainer
|
---|
5 | #include "MParContainer.h"
|
---|
6 | #endif
|
---|
7 |
|
---|
8 | class MCameraCentralPix : public MParContainer
|
---|
9 | {
|
---|
10 | friend class MReportCamera;
|
---|
11 |
|
---|
12 | private:
|
---|
13 | Bool_t fStatus; // Status of central pixel
|
---|
14 |
|
---|
15 | Float_t fDC; // [nA]
|
---|
16 |
|
---|
17 | public:
|
---|
18 | MCameraCentralPix() : fDC(-1)
|
---|
19 | {
|
---|
20 | fName = "MCameraCentralPix";
|
---|
21 | fTitle = "Container storing information about the Camera Central Pixel";
|
---|
22 | }
|
---|
23 |
|
---|
24 | Bool_t GetStatus() const { return fStatus; }
|
---|
25 | Bool_t GetStatusCPix() const { return fStatus; } // deprecated - for compatibility only
|
---|
26 |
|
---|
27 | ClassDef(MCameraCentralPix, 2) // Container storing information about the Central Pixel status
|
---|
28 | };
|
---|
29 |
|
---|
30 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.