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

Last change on this file since 2032 was 1111, checked in by tbretz, 23 years ago
*** empty log message ***
File size: 734 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 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
34public:
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.