source: trunk/MagicSoft/Cosy/gui/MGAccuracy.h@ 994

Last change on this file since 994 was 918, checked in by tbretz, 23 years ago
*** empty log message ***
File size: 751 bytes
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
14class TList;
15class TLine;
16class TText;
17class TCanvas;
18
19class ZdAz;
20class SlaPlanets;
21
22class MGAccuracy : public MGEmbeddedCanvas
23{
24 TLine *fLin1;
25 TLine *fLin2;
26
27 TText *fTxt;
28
29 void DrawCoordinateSystem();
30
31 void InitText();
32 void InitCross();
33
34 void UpdateText(Float_t zd, Float_t x, Float_t y);
35 void UpdateCross(Float_t x, Float_t y);
36
37public:
38 MGAccuracy(const TGWindow* p, const UInt_t w);
39 ~MGAccuracy();
40
41 void Update(ZdAz &pos, ZdAz &acc);
42};
43
44#endif // MGSKYPOSITION_H
Note: See TracBrowser for help on using the repository browser.