source: tags/Mars-V1.0/mcamera/MCameraCentralPix.h

Last change on this file was 6963, checked in by tbretz, 19 years ago
*** empty log message ***
File size: 684 bytes
Line 
1#ifndef MARS_MCameraCentralPix
2#define MARS_MCameraCentralPix
3
4#ifndef MARS_MParContainer
5#include "MParContainer.h"
6#endif
7
8class MCameraCentralPix : public MParContainer
9{
10 friend class MReportCamera;
11
12private:
13 Bool_t fStatus; // Status of central pixel
14
15public:
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.