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

Last change on this file since 2535 was 2535, checked in by tbretz, 22 years ago
*** empty log message ***
File size: 1.0 KB
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 Bool_t fStatus; // Monitored status: , Cam.LV_state
17 Bool_t fRequestPowerSupply; // Requested status: o=off, 1=on, blv_ps_status
18 Bool_t fRequestTemp; // Requested status: o=off, 1=on, blv_temp
19 Bool_t fRequestHumidity; // Requested status: o=off, 1=on, blv_RelativeHumidity
20
21 MCameraPowerSupply fPowerSupplyA; // power supply A
22 MCameraPowerSupply fPowerSupplyB; // power supply B
23
24 Float_t fVoltageOptLinkPos12V; // [V] voltage_opt_link_pos12
25 Float_t fVoltageOptLinkSparePos12V; // [V] voltage_opt_link_spare_pos12
26
27 Float_t fCurrentOptLinkPos12V; // [A] current_opt_link_pos12
28 Float_t fCurrentOptLinkSparePos12V; // [A] current_opt_link_spare_pos12
29
30public:
31 ClassDef(MCameraLV, 0)
32};
33
34#endif
Note: See TracBrowser for help on using the repository browser.