| Line | |
|---|
| 1 | #ifndef MGACCURACY_H
|
|---|
| 2 | #define MGACCURACY_H
|
|---|
| 3 |
|
|---|
| 4 | //
|
|---|
| 5 | // This File contains the declaration of the MGCoordinates-class
|
|---|
| 6 | //
|
|---|
| 7 | // Author: Thomas Bretz
|
|---|
| 8 | // Version: V1.0 (1-8-2000)
|
|---|
| 9 |
|
|---|
| 10 | #ifndef MGEMBEDDEDCANVAS_H
|
|---|
| 11 | #include "MGEmbeddedCanvas.h"
|
|---|
| 12 | #endif
|
|---|
| 13 |
|
|---|
| 14 | class TLine;
|
|---|
| 15 | class TText;
|
|---|
| 16 |
|
|---|
| 17 | class ZdAz;
|
|---|
| 18 |
|
|---|
| 19 | class MGAccuracy : public MGEmbeddedCanvas
|
|---|
| 20 | {
|
|---|
| 21 | TLine *fLin1;
|
|---|
| 22 | TLine *fLin2;
|
|---|
| 23 |
|
|---|
| 24 | TText *fTxt;
|
|---|
| 25 |
|
|---|
| 26 | void DrawCoordinateSystem();
|
|---|
| 27 |
|
|---|
| 28 | void InitText();
|
|---|
| 29 | void InitCross();
|
|---|
| 30 |
|
|---|
| 31 | void UpdateText(Float_t zd, Float_t x, Float_t y);
|
|---|
| 32 | void UpdateCross(Float_t x, Float_t y);
|
|---|
| 33 |
|
|---|
| 34 | public:
|
|---|
| 35 | MGAccuracy(const TGWindow* p, const UInt_t w);
|
|---|
| 36 | ~MGAccuracy();
|
|---|
| 37 |
|
|---|
| 38 | void Update(ZdAz &pos, ZdAz &acc);
|
|---|
| 39 |
|
|---|
| 40 | ClassDef(MGAccuracy, 0)
|
|---|
| 41 | };
|
|---|
| 42 |
|
|---|
| 43 | #endif // MGSKYPOSITION_H
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.