source: trunk/Mars/mreport/MReportCamera.h@ 15625

Last change on this file since 15625 was 9289, checked in by tbretz, 16 years ago
*** empty log message ***
File size: 1.7 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, Int_t ver);
47 Bool_t InterpreteCHTEMP(TString &str);
48 Bool_t InterpreteHVFIL(TString &str);
49 Bool_t InterpretePSSEN(TString &str);
50 Bool_t InterpreteLIQ(TString &str);
51
52 Int_t InterpreteBody(TString &str, Int_t ver);
53
54public:
55 MReportCamera();
56
57 Byte_t GetStatus() const { return fStatus; }
58
59 ClassDef(MReportCamera, 2) // Class for CAMERA-REPORT information
60};
61
62#endif
Note: See TracBrowser for help on using the repository browser.