source: trunk/MagicSoft/Mars/mreport/MReportCamera.h@ 9029

Last change on this file since 9029 was 9005, checked in by tbretz, 16 years ago
*** empty log message ***
File size: 1.6 KB
Line 
1#ifndef MARS_MReportCamera
2#define MARS_MReportCamera
3
4#ifndef MARS_MReport
5#include "MReport.h"
6#endif
7
8class MCameraCooling;
9class MCameraLids;
10class MCameraHV;
11class MCameraDC;
12class MCameraLV;
13class MCameraAUX;
14class MCameraCalibration;
15class MCameraActiveLoad;
16class MCameraCentralPix;
17
18class MReportCamera : public MReport
19{
20private:
21 Byte_t fStatus; // CaCo monitored status of the sentinel (0-9), Sentinel_state
22
23 MCameraCooling *fCooling; //!
24 MCameraLids *fLids; //!
25 MCameraAUX *fAUX; //!
26 MCameraHV *fHV; //!
27 MCameraDC *fDC; //!
28 MCameraLV *fLV; //!
29 MCameraActiveLoad *fActiveLoad; //!
30 MCameraCalibration *fCalibration; //!
31 MCameraCentralPix *fCentralPix; //!
32
33 Bool_t SetupReading(MParList &plist);
34
35 Bool_t InterpreteCamera(TString &str, Int_t ver);
36 Bool_t InterpreteDC(TString &str);
37 Bool_t InterpreteHV(TString &str);
38 Bool_t InterpreteCOOL(TString &str);
39 Bool_t InterpreteLID(TString &str);
40 Bool_t InterpreteHVPS(TString &str);
41 Bool_t InterpreteLV(TString &str);
42 Bool_t InterpreteAUX(TString &str);
43 Bool_t InterpreteCAL(TString &str);
44 Bool_t InterpreteHOT(TString &str);
45 Bool_t InterpreteActiveLoad(TString &str);
46 Bool_t InterpreteCentralPix(TString &str);
47 Bool_t InterpreteCHTEMP(TString &str);
48 Bool_t InterpreteHVFIL(TString &str);
49
50 Int_t InterpreteBody(TString &str, Int_t ver);
51
52public:
53 MReportCamera();
54
55 Byte_t GetStatus() const { return fStatus; }
56
57 ClassDef(MReportCamera, 2) // Class for CAMERA-REPORT information
58};
59
60#endif
Note: See TracBrowser for help on using the repository browser.