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

Last change on this file since 2687 was 2687, checked in by tbretz, 21 years ago
*** empty log message ***
File size: 457 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
16public:
17 MReportCC();
18
19 Bool_t InterpreteBody(TString &str);
20
21 ClassDef(MReportCC, 1) // Class for CC-REPORT information
22};
23
24#endif
Note: See TracBrowser for help on using the repository browser.