source: trunk/MagicSoft/Mars/mcamera/MCameraLids.h@ 2840

Last change on this file since 2840 was 2593, checked in by tbretz, 21 years ago
*** empty log message ***
File size: 605 bytes
Line 
1#ifndef MARS_MCameraLids
2#define MARS_MCameraLids
3
4#ifndef MARS_MParContainer
5#include "MParContainer.h"
6#endif
7
8#ifndef MARS_MCameraLid
9#include "MCameraLid.h"
10#endif
11
12class MCameraLids : public MParContainer
13{
14 friend class MReportCamera;
15private:
16 MCameraLid fLidA;
17 MCameraLid fLidB;
18
19 Byte_t fStatus; // CaCo monitored lid status, Cam.LID_state [0-9]
20public:
21 MCameraLids()
22 {
23 fName = "MCameraLids";
24 fTitle = "Container storing information about the Camera lids";
25 }
26 ClassDef(MCameraLids, 1) // Container storing information about the Camera lids
27};
28
29#endif
Note: See TracBrowser for help on using the repository browser.