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

Last change on this file since 3425 was 2518, checked in by tbretz, 21 years ago
*** empty log message ***
File size: 773 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 TLine;
15class TText;
16
17class ZdAz;
18
19class MGAccuracy : public MGEmbeddedCanvas
20{
21 TLine *fLin1;
22 TLine *fLin2;
23
24 TText *fTxt;
25
26 TLine *fBar;
27
28 void DrawCoordinateSystem();
29
30 void InitText();
31 void InitCross();
32 void InitBar();
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 ClassDef(MGAccuracy, 0)
44};
45
46#endif // MGSKYPOSITION_H
Note: See TracBrowser for help on using the repository browser.