source: trunk/MagicSoft/Mars/mcamera/MCameraHV.h@ 2536

Last change on this file since 2536 was 2535, checked in by tbretz, 22 years ago
*** empty log message ***
File size: 898 bytes
Line 
1#ifndef MARS_MCameraHV
2#define MARS_MCameraHV
3
4#ifndef MARS_MParContainer
5#include "MParContainer.h"
6#endif
7
8#ifndef ROOT_TArrayS
9#include <TArrayS.h>
10#endif
11
12class MCameraHV : public MParContainer
13{
14 friend class MReportCamera;
15private:
16 Bool_t fStatus; // Monitored status of the High Voltage, Cam.HV.PS_state
17 Bool_t fStatusPowerSupply; // Monitored status of the HV Power supply, Cam.HV_state
18
19 Short_t fVoltageA; // [V] Measured voltage of power supply A, hvps1
20 Short_t fVoltageB; // [V] Measured voltage of power supply B, hvps2
21
22 Short_t fCurrentA; // [A] Measured current of power supply A, curr1
23 Short_t fCurrentB; // [A] Measured current of power supply B, curr2
24
25 TArrayS fHV; // [V] Measured high Voltages for all PMTs
26public:
27 MCameraHV() : fHV(577) { }
28 ClassDef(MCameraHV, 0)
29};
30
31#endif
Note: See TracBrowser for help on using the repository browser.