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

Last change on this file since 3038 was 2892, checked in by tbretz, 21 years ago
*** empty log message ***
File size: 707 bytes
Line 
1#ifndef MARS_MReportCC
2#define MARS_MReportCC
3
4#ifndef MARS_MReport
5#include "MReport.h"
6#endif
7
8class MReportCC : public MReport
9{
10private:
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);
17
18public:
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.