source: trunk/MagicSoft/Mars/mreport/MReportStarguider.h@ 5954

Last change on this file since 5954 was 5796, checked in by riegel, 20 years ago
*** empty log message ***
File size: 580 bytes
Line 
1#ifndef MARS_MReportStarguider
2#define MARS_MReportStarguider
3
4#ifndef MARS_MReport
5#include "MReport.h"
6#endif
7
8class MReportStarguider : public MReport
9{
10private:
11 Double_t fDevAz; // [deg] azimuth mispointing
12 Double_t fDevZd; // [deg] zenith mispointing
13
14 Int_t InterpreteBody(TString &str, Int_t ver);
15
16public:
17 MReportStarguider();
18
19 Double_t GetDevAz() const { return fDevAz; }
20 Double_t GetDevZd() const { return fDevZd; }
21
22 void Print(Option_t *o="") const;
23
24 ClassDef(MReportStarguider, 1) // Class for STARG-REPORT information
25};
26
27#endif
Note: See TracBrowser for help on using the repository browser.