CARMA C++
Amp.h
Go to the documentation of this file.
1 #ifndef SZA_UTIL_AMP_H
2 #define SZA_UTIL_AMP_H
3 
11 namespace sza {
12  namespace util {
13 
17  class Amp {
18  public:
19 
20  enum Type {
21  RF = 0x1,
22  IF = 0x2
23  };
24 
25  enum Stage {
26  FIRST = 0x1,
27  SECOND = 0x2,
28  THIRD = 0x4,
29  FOURTH = 0x8
30  };
31 
32  enum Bias {
33  GATE_VOLTAGE = 0x1,
34  DRAIN_VOLTAGE = 0x2,
35  DRAIN_CURRENT = 0x4,
36  };
37  }; // End class Amp
38 
39  } // End namespace util
40 } // End namespace sza
41 
42 
43 
44 #endif // End #ifndef SZA_UTIL_AMP_H
A class for enumerating amplifiers.
Definition: Amp.h:17