source: trunk/MagicSoft/Mars/mcamera/MCameraCooling.h@ 2541

Last change on this file since 2541 was 2535, checked in by tbretz, 22 years ago
*** empty log message ***
File size: 1.1 KB
Line 
1#ifndef MARS_MCameraCooling
2#define MARS_MCameraCooling
3
4#ifndef MARS_MParContainer
5#include "MParContainer.h"
6#endif
7
8class MCameraCooling : public MParContainer
9{
10 friend class MReportCamera;
11private:
12 Byte_t fStatus; // Monitored status: 0-8, Cam.COOLING_state
13
14 Bool_t fStatusPressureHi; // 0=ok, 1=Obstruct
15 Bool_t fStatusPressureLo; // 0=ok, 1=leakage
16 Bool_t fStatusPumb; // 0=off, 1=on
17 Bool_t fStatusRefrigrerator; // 0=off, 1=on
18 Bool_t fStatusValve; // 0=recirculate, 1=new
19 Bool_t fStatusResistor; // 0=off, 1=on
20 Bool_t fStatusFans; // 0=off, 1=on
21
22 Float_t fTempCenter; // [deg C] Temperature at the camera center
23 Float_t fTempWall; // [deg C] Temperature at the camera wall
24 Float_t fTempOptLink; // [deg C] Temperature at the optical link
25 Float_t fTempWater; // [deg C] Temperature of the water
26
27 Byte_t fHumAll; // [%] Relative humidity over all
28 Byte_t fHumCenter; // [%] Relative humidity camera center
29
30public:
31 ClassDef(MCameraCooling, 0)
32};
33
34#endif
Note: See TracBrowser for help on using the repository browser.