source: trunk/MagicSoft/Mars/mreport/MReportDrive.h@ 2529

Last change on this file since 2529 was 2520, checked in by tbretz, 21 years ago
*** empty log message ***
File size: 626 bytes
Line 
1#ifndef MARS_MReportDrive
2#define MARS_MReportDrive
3
4#ifndef MARS_MReport
5#include "MReport.h"
6#endif
7
8class MReportDrive : public MReport
9{
10private:
11 Double_t fMjd;
12
13 Double_t fRa; // [h]
14 Double_t fDec; // [deg]
15 Double_t fHa; // [h]
16
17 Double_t fNominalZd; // [deg]
18 Double_t fNominalAz; // [deg]
19 Double_t fCurrentZd; // [deg]
20 Double_t fCurrentAz; // [deg]
21
22 Double_t fErrorZd; // [?]
23 Double_t fErrorAz; // [?]
24
25public:
26 MReportDrive();
27
28 Bool_t InterpreteBody(TString &str);
29
30 ClassDef(MReportDrive, 0) // Base class for control reports
31};
32
33#endif
Note: See TracBrowser for help on using the repository browser.