Line | |
---|
1 | #ifndef MARS_MReportStarguider
|
---|
2 | #define MARS_MReportStarguider
|
---|
3 |
|
---|
4 | #ifndef MARS_MReport
|
---|
5 | #include "MReport.h"
|
---|
6 | #endif
|
---|
7 |
|
---|
8 | class MReportStarguider : public MReport
|
---|
9 | {
|
---|
10 | private:
|
---|
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 |
|
---|
16 | public:
|
---|
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.