source: trunk/Mars/mreport/MReportPyrometer.h@ 16855

Last change on this file since 16855 was 8933, checked in by tbretz, 16 years ago
*** empty log message ***
File size: 732 bytes
Line 
1#ifndef MARS_MReportPyrometer
2#define MARS_MReportPyrometer
3
4#ifndef MARS_MReport
5#include "MReport.h"
6#endif
7
8class MReportPyrometer : public MReport
9{
10private:
11 Float_t fTempSky; // [K] Temperature Sky
12 Float_t fTempAir; // [K] Tempareture Air
13 Float_t fCloudiness; // [%] Cloudiness
14
15 Bool_t fLidOpen; // Lid Status
16
17 Int_t InterpreteBody(TString &str, Int_t ver);
18
19public:
20 MReportPyrometer();
21
22 Float_t GetTempSky() const { return fTempSky; }
23 Float_t GetTempAir() const { return fTempAir; }
24
25 Float_t GetCloudiness() const { return fCloudiness; }
26
27 Bool_t IsLidOpen() const { return fLidOpen; }
28
29 ClassDef(MReportPyrometer, 1) // Class for PYRO-REPORT information
30};
31
32#endif
Note: See TracBrowser for help on using the repository browser.