Line | |
---|
1 | #ifndef MARS_MReportCC
|
---|
2 | #define MARS_MReportCC
|
---|
3 |
|
---|
4 | #ifndef MARS_MReport
|
---|
5 | #include "MReport.h"
|
---|
6 | #endif
|
---|
7 |
|
---|
8 | class MReportCC : public MReport
|
---|
9 | {
|
---|
10 | private:
|
---|
11 | Float_t fHumidity; // [%]
|
---|
12 | Float_t fTemperature; // [deg] celsius
|
---|
13 | Float_t fWindSpeed; // [km/h]
|
---|
14 | Float_t fSolarRadiation; // [W/m^2] IR-Radiation
|
---|
15 |
|
---|
16 | Float_t fUPSStatus; // arbitrary units (still not properly defined)
|
---|
17 | Float_t fDifRubGPS; // [us] Difference between the Rubidium clock time and the time provided by the GPS receiver
|
---|
18 |
|
---|
19 | Int_t InterpreteBody(TString &str, Int_t ver);
|
---|
20 |
|
---|
21 | public:
|
---|
22 | MReportCC();
|
---|
23 |
|
---|
24 | Float_t GetHumidity() const { return fHumidity; }
|
---|
25 | Float_t GetTemperature() const { return fTemperature; }
|
---|
26 | Float_t GetWindSpeed() const { return fWindSpeed; }
|
---|
27 | Float_t GetSolarRadiation() const { return fSolarRadiation; }
|
---|
28 |
|
---|
29 | void Print(Option_t *opt) const;
|
---|
30 |
|
---|
31 | ClassDef(MReportCC, 2) // Class for CC-REPORT information
|
---|
32 | };
|
---|
33 |
|
---|
34 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.