source: trunk/MagicSoft/Mars/mreport/MReportCC.h@ 8963

Last change on this file since 8963 was 8963, checked in by tbretz, 16 years ago
*** empty log message ***
File size: 1.4 KB
Line 
1#ifndef MARS_MReportCC
2#define MARS_MReportCC
3
4#ifndef MARS_MReport
5#include "MReport.h"
6#endif
7
8class MReportRec;
9class MCameraTH;
10class MCameraTD;
11class MCameraRecTemp;
12
13class MReportCC : public MReport
14{
15private:
16 Float_t fHumidity; // [%]
17 Float_t fTemperature; // [deg] celsius
18 Float_t fWindSpeed; // [km/h]
19 Float_t fSolarRadiation; // [W/m^2] IR-Radiation
20
21 Float_t fUPSStatus; // arbitrary units (still not properly defined)
22 Float_t fDifRubGPS; // [us] Difference between the Rubidium clock time and the time provided by the GPS receiver
23
24 MCameraTH *fTH; //! Discriminator thresholds
25 MCameraTD *fTD; //! Discriminator delays
26 MCameraRecTemp *fRecTemp; //! Receiver Board temperatures
27
28 MReportRec *fRecRep; //! Pipe interpretation to MReportRec if necessary
29
30 // Internal
31 Bool_t SetupReading(MParList &plist);
32 Bool_t InterpreteCC(TString &str, Int_t ver);
33
34 // MReport
35 Int_t InterpreteBody(TString &str, Int_t ver);
36
37public:
38 MReportCC();
39
40 Float_t GetHumidity() const { return fHumidity; }
41 Float_t GetTemperature() const { return fTemperature; }
42 Float_t GetWindSpeed() const { return fWindSpeed; }
43 Float_t GetSolarRadiation() const { return fSolarRadiation; }
44
45 void Print(Option_t *opt) const;
46
47 ClassDef(MReportCC, 2) // Class for CC-REPORT information
48};
49
50#endif
Note: See TracBrowser for help on using the repository browser.