My Project
 All Classes Files Functions Variables Enumerations Enumerator Friends Macros Pages
PmacMode.h
Go to the documentation of this file.
1 #ifndef PMACMODE_H
2 #define PMACMODE_H
3 
12 namespace gcp {
13  namespace util {
14 
18  class PmacMode {
19 
20  public:
24  enum Mode {
25 
26  // Follow 1-second tracking targets
27 
28  TRACK,
29 
30  // Slew the telescope to a given position then stop
31 
32  SLEW,
33 
34  // Bring the telesope to a stop ASAP
35 
36  HALT,
37 
38  // Start a new track when a pulse is received from the
39  // time-code reader.
40 
41  SYNC,
42 
43  // Tell the pmac to reboot itself
44 
45  REBOOT
46  };
47 
48  }; // End class PmacMode
49 
50  } // End namespace util
51 } // End namespace gcp
52 
53 
54 #endif // End #ifndef
Definition: PmacMode.h:18
Mode
Definition: PmacMode.h:24