Line | |
---|
1 | #ifndef MGCOSY_H
|
---|
2 | #define MGCOSY_H
|
---|
3 |
|
---|
4 | #ifndef ROOT_TGFrame
|
---|
5 | #include <TGFrame.h>
|
---|
6 | #endif
|
---|
7 |
|
---|
8 | class TIterator;
|
---|
9 |
|
---|
10 | class TGLabel;
|
---|
11 | class TGPopupMenu;
|
---|
12 | class TGMenuBar;
|
---|
13 | class TGHorizontal3DLine;
|
---|
14 | class TGLayoutHints;
|
---|
15 | class TGCompositeFrame;
|
---|
16 | class TGTab;
|
---|
17 | class TGListBox;
|
---|
18 |
|
---|
19 | class ZdAz;
|
---|
20 | class RaDec;
|
---|
21 | class MsgQueue;
|
---|
22 |
|
---|
23 | class MGImage;
|
---|
24 | class MGList;
|
---|
25 | class MGCoordinates;
|
---|
26 | class MGSkyPosition;
|
---|
27 | class MGAccuracy;
|
---|
28 | class MGVelocity;
|
---|
29 |
|
---|
30 | class MGCosy : public TGMainFrame
|
---|
31 | {
|
---|
32 | private:
|
---|
33 |
|
---|
34 | //
|
---|
35 | // Create a main frame with a number of different buttons.
|
---|
36 | //
|
---|
37 | TGLayoutHints *fLayMenuBar;
|
---|
38 | TGLayoutHints *fLayMenuItem;
|
---|
39 |
|
---|
40 | MGList *fList;
|
---|
41 |
|
---|
42 | TGLabel **fLabel1;
|
---|
43 | TGLabel **fLabel2;
|
---|
44 | TGLabel **fLabel3;
|
---|
45 |
|
---|
46 | TGLabel *fOffsetZd;
|
---|
47 | TGLabel *fOffsetAz;
|
---|
48 |
|
---|
49 | TGLabel *fRaEst;
|
---|
50 | TGLabel *fDecEst;
|
---|
51 |
|
---|
52 | TGLabel *fRaSoll;
|
---|
53 | TGLabel *fDecSoll;
|
---|
54 |
|
---|
55 | TGLabel *fZdSoll;
|
---|
56 | TGLabel *fAzSoll;
|
---|
57 |
|
---|
58 | TGLabel *fUtc;
|
---|
59 | TGLabel *fMjd;
|
---|
60 |
|
---|
61 | MGCoordinates *fCZdAz;
|
---|
62 | MGCoordinates *fCRaDec;
|
---|
63 | MGCoordinates *fCCalib;
|
---|
64 |
|
---|
65 | MGSkyPosition *fSkyPosition;
|
---|
66 | MGAccuracy *fAccuracy;
|
---|
67 | MGVelocity *fVelocity;
|
---|
68 | MGVelocity *fOffset;
|
---|
69 |
|
---|
70 | MsgQueue *fQueue;
|
---|
71 |
|
---|
72 | TGTab *fTab;
|
---|
73 |
|
---|
74 | TGLabel *fError;
|
---|
75 | TGLabel *fMoving;
|
---|
76 | TGLabel *fTracking;
|
---|
77 | TGLabel *fStopping;
|
---|
78 | TGLabel *fStopped;
|
---|
79 |
|
---|
80 | TGListBox *fLog;
|
---|
81 |
|
---|
82 | void CreateMenu();
|
---|
83 | void CreateLabel(TGCompositeFrame *f);
|
---|
84 | void CreateTabs(TGTab *fTab);
|
---|
85 |
|
---|
86 | void StartPos();
|
---|
87 | void StartTrack();
|
---|
88 | void StartDemo();
|
---|
89 | void StartCalib();
|
---|
90 | void StartTPoint();
|
---|
91 |
|
---|
92 | void EnableLabel(TGLabel *label, Bool_t stat);
|
---|
93 | void UpdateOffset(ZdAz &off);
|
---|
94 | void UpdateZdAz(ZdAz &off);
|
---|
95 | void UpdateRaDec(ZdAz &pos, double mjd, RaDec &radec);
|
---|
96 | double UpdateTime();
|
---|
97 |
|
---|
98 | public:
|
---|
99 | MGCosy(MsgQueue *q, const TGWindow *p, UInt_t w, UInt_t h);
|
---|
100 | ~MGCosy();
|
---|
101 |
|
---|
102 | void CloseWindow();
|
---|
103 |
|
---|
104 | TGLabel **GetLabel1() const { return fLabel1; }
|
---|
105 | TGLabel **GetLabel2() const { return fLabel2; }
|
---|
106 | TGLabel **GetLabel3() const { return fLabel3; }
|
---|
107 |
|
---|
108 | TGListBox *GetLog() const { return fLog; }
|
---|
109 |
|
---|
110 | void Update(ZdAz pos, ZdAz acc, ZdAz vel, ZdAz off, RaDec radec, ZdAz soll, UInt_t stat);
|
---|
111 |
|
---|
112 | Bool_t ProcessMessage(Long_t msg, Long_t mp1, Long_t mp2);
|
---|
113 |
|
---|
114 | ClassDef(MGCosy, 0)
|
---|
115 | };
|
---|
116 |
|
---|
117 | #endif
|
---|
118 |
|
---|
119 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.