source: trunk/Mars/mcamera/MCameraCentralPix.h@ 10391

Last change on this file since 10391 was 9301, checked in by tbretz, 16 years ago
*** empty log message ***
File size: 782 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
15 Int_t fDC; // DC current in ADC counts
16
17public:
18 MCameraCentralPix() : fDC(0)
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 Int_t GetDC() const { return fDC; }
28
29 ClassDef(MCameraCentralPix, 2) // Container storing information about the Central Pixel status
30};
31
32#endif
Note: See TracBrowser for help on using the repository browser.