CARMA C++
LoStage.h
Go to the documentation of this file.
1 #ifndef LOSTAGE_H
2 #define LOSTAGE_H
3 
11 namespace sza {
12  namespace util {
13 
17  class LoStage {
18  public:
19 
20  enum Stage {
21  LO_IF = 0x1,
22  LO_SWEEP = 0x2,
23  LO_GUNN = 0x4,
24  LO_RFMONITOR = 0x8,
25  LO_IFMONITOR = 0x10,
26  LO_ATTEN = 0x20,
27  LO_BACKSHORT = 0x40,
28  LO_TUNER = 0x80,
29  LO_ALL = LO_IF|LO_SWEEP|LO_GUNN|LO_RFMONITOR|LO_IFMONITOR|LO_ATTEN|LO_BACKSHORT|LO_TUNER
30  };
31 
32  }; // End class LoStage
33 
34  }; // End namespace util
35 }; // End namespace sza
36 
37 #endif // End #ifndef
38 
39 
Class to enumerate recognized LO stages.
Definition: LoStage.h:17