source: trunk/MagicSoft/Mars/mcamera/MCameraLV.h@ 2883

Last change on this file since 2883 was 2593, checked in by tbretz, 21 years ago
*** empty log message ***
File size: 983 bytes
Line 
1#ifndef MARS_MCameraLV
2#define MARS_MCameraLV
3
4#ifndef MARS_MParContainer
5#include "MParContainer.h"
6#endif
7
8#ifndef MARS_MCameraPowerSupply
9#include <MCameraPowerSupply.h>
10#endif
11
12class MCameraLV : public MParContainer
13{
14 friend class MReportCamera;
15private:
16 Byte_t fStatus; // CaCo monitored LV PS status: , Cam.LV_state
17 Bool_t fRequestPowerSupply; // Requested status: o=off, 1=on, blv_ps_status
18
19 Float_t fTemp; // Measured status: o=off, 1=on, blv_temp
20 Byte_t fHumidity; // Measured status: o=off, 1=on, blv_RelativeHumidity
21
22 MCameraPowerSupply fPowerSupplyA; // power supply camera part A
23 MCameraPowerSupply fPowerSupplyB; // power supply camera part B
24
25public:
26 MCameraLV()
27 {
28 fName = "MCameraLV";
29 fTitle = "Container storing information about the Camera LV";
30 }
31 ClassDef(MCameraLV, 1) // Container storing information about the Camera LV
32};
33
34#endif
Note: See TracBrowser for help on using the repository browser.