My Project
 All Classes Files Functions Variables Enumerations Enumerator Friends Macros Pages
Amp.h
Go to the documentation of this file.
1 #ifndef GCP_UTIL_AMP_H
2 #define GCP_UTIL_AMP_H
3 
11 namespace gcp {
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_VOLTAAGE = 0x1,
34  DRAIN_VOLTAGE = 0x2,
35  DRAIN_CURRENT = 0x4,
36  };
37  }; // End class Amp
38 
39  } // End namespace util
40 } // End namespace gcp
41 
42 
43 
44 
45 #endif // End #ifndef GCP_UTIL_AMP_H
Definition: Amp.h:17