| 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 | Int_t InterpreteBody(TString &str, Int_t ver);
|
|---|
| 17 |
|
|---|
| 18 | public:
|
|---|
| 19 | MReportCC();
|
|---|
| 20 |
|
|---|
| 21 | Float_t GetHumidity() const { return fHumidity; }
|
|---|
| 22 | Float_t GetTemperature() const { return fTemperature; }
|
|---|
| 23 | Float_t GetWindSpeed() const { return fWindSpeed; }
|
|---|
| 24 | Float_t GetSolarRadiation() const { return fSolarRadiation; }
|
|---|
| 25 |
|
|---|
| 26 | ClassDef(MReportCC, 1) // Class for CC-REPORT information
|
|---|
| 27 | };
|
|---|
| 28 |
|
|---|
| 29 | #endif
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.