source: trunk/MagicSoft/Cosy/tcpip/MDriveCom.h@ 8862

Last change on this file since 8862 was 8862, checked in by tbretz, 17 years ago
*** empty log message ***
File size: 1.2 KB
Line 
1#ifndef COSY_MDriveCom
2#define COSY_MDriveCom
3
4#ifndef COSY_MCeCoCom
5#include "MCeCoCom.h"
6#endif
7
8class RaDec;
9class ZdAz;
10class MsgQueue;
11class Ring;
12class MLog;
13
14class MDriveCom : public MCeCoCom
15{
16private:
17 MsgQueue *fQueue;
18
19 bool ReadAngle(TString &str, Double_t &d);
20 bool ReadPosition(TString &str, Double_t &d1, Double_t &d2);
21
22 bool InterpreteCmd(TString cmd, TString str);
23 void Print(TString &str, Double_t deg) const;
24
25 bool CommandRADEC(TString &str);
26 bool CommandGRB(TString &str);
27 bool CommandZDAZ(TString &str);
28 bool CommandPREPS(TString &str);
29 bool CommandARM(TString &str);
30
31public:
32 enum
33 {
34 kError = 0x01,
35 kMoving = 0x02,
36 kTracking = 0x04,
37 kStopping = 0x08,
38 kStopped = 0x10,
39 kStandby = 0x20,
40 kMonitoring = 0x40
41 };
42
43 MDriveCom(MsgQueue *q, const char *addr, MLog *out) : MCeCoCom(addr, out), fQueue(q) {}
44
45 bool SendReport(UInt_t stat, RaDec rd, ZdAz so, ZdAz is, ZdAz er);
46 bool SendStargReport(UInt_t stat, ZdAz miss, ZdAz nompos, Ring center, Int_t num, Int_t n, Double_t bright, Double_t mjd, Double_t x, Double_t y);
47 bool SendStatus(const char *stat);
48};
49
50#endif
Note: See TracBrowser for help on using the repository browser.