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 | public:
|
---|
16 | MCameraCentralPix()
|
---|
17 | {
|
---|
18 | fName = "MCameraCentralPix";
|
---|
19 | fTitle = "Container storing information about the Camera Central Pixel";
|
---|
20 | }
|
---|
21 |
|
---|
22 | Bool_t GetStatus() const { return fStatus; }
|
---|
23 | Bool_t GetStatusCPix() const { return fStatus; } // deprecated - for compatibility only
|
---|
24 |
|
---|
25 | ClassDef(MCameraCentralPix, 1) // Container storing information about the Central Pixel status
|
---|
26 | };
|
---|
27 |
|
---|
28 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.