usersignalgenerator.h
1 /***************************************************************************
2  Copyright (C) 2002-2015 Kentaro Kitagawa
3  kitagawa@phys.s.u-tokyo.ac.jp
4 
5  This program is free software; you can redistribute it and/or
6  modify it under the terms of the GNU Library General Public
7  License as published by the Free Software Foundation; either
8  version 2 of the License, or (at your option) any later version.
9 
10  You should have received a copy of the GNU Library General
11  Public License and a list of authors along with this program;
12  see the files COPYING and AUTHORS.
13 ***************************************************************************/
14 #ifndef usersignalgeneratorH
15 #define usersignalgeneratorH
16 
17 #include "chardevicedriver.h"
18 #include "signalgenerator.h"
19 
20 //! KENWOOD SG-7200
21 class XSG7200 : public XCharDeviceDriver<XSG> {
22 public:
23  XSG7200(const char *name, bool runtime,
24  Transaction &tr_meas, const shared_ptr<XMeasure> &meas);
25  virtual ~XSG7200() {}
26 
27 protected:
28  virtual void changeFreq(double mhz);
29  virtual void onRFONChanged(const Snapshot &shot, XValueNodeBase *);
30  virtual void onOLevelChanged(const Snapshot &shot, XValueNodeBase *);
31  virtual void onFMONChanged(const Snapshot &shot, XValueNodeBase *);
32  virtual void onAMONChanged(const Snapshot &shot, XValueNodeBase *);
33 private:
34 };
35 
36 //! KENWOOD SG-7130
37 class XSG7130 : public XSG7200 {
38 public:
39  XSG7130(const char *name, bool runtime,
40  Transaction &tr_meas, const shared_ptr<XMeasure> &meas);
41  virtual ~XSG7130() {}
42 };
43 
44 //! Agilent 8643A, 8644A
45 class XHP8643 : public XCharDeviceDriver<XSG> {
46 public:
47  XHP8643(const char *name, bool runtime,
48  Transaction &tr_meas, const shared_ptr<XMeasure> &meas);
49  virtual ~XHP8643() {}
50 protected:
51  virtual void changeFreq(double mhz);
52  virtual void onRFONChanged(const Snapshot &shot, XValueNodeBase *);
53  virtual void onOLevelChanged(const Snapshot &shot, XValueNodeBase *);
54  virtual void onFMONChanged(const Snapshot &shot, XValueNodeBase *);
55  virtual void onAMONChanged(const Snapshot &shot, XValueNodeBase *);
56 private:
57 };
58 
59 //! Agilent 8648
60 class XHP8648 : public XHP8643 {
61 public:
62  XHP8648(const char *name, bool runtime,
63  Transaction &tr_meas, const shared_ptr<XMeasure> &meas);
64  virtual ~XHP8648() {}
65 protected:
66  virtual void onRFONChanged(const Snapshot &shot, XValueNodeBase *);
67  virtual void onOLevelChanged(const Snapshot &shot, XValueNodeBase *);
68 private:
69 };
70 
71 //! Agilent 8664A, 8665A
72 class XHP8664 : public XCharDeviceDriver<XSG> {
73 public:
74  XHP8664(const char *name, bool runtime,
75  Transaction &tr_meas, const shared_ptr<XMeasure> &meas);
76  virtual ~XHP8664() {}
77 protected:
78  virtual void changeFreq(double mhz);
79  virtual void onRFONChanged(const Snapshot &shot, XValueNodeBase *);
80  virtual void onOLevelChanged(const Snapshot &shot, XValueNodeBase *);
81  virtual void onFMONChanged(const Snapshot &shot, XValueNodeBase *);
82  virtual void onAMONChanged(const Snapshot &shot, XValueNodeBase *);
83 private:
84 };
85 
86 //! DS Technology DPL-3.2XGF
87 class XDPL32XGF : public XCharDeviceDriver<XSG> {
88 public:
89  XDPL32XGF(const char *name, bool runtime,
90  Transaction &tr_meas, const shared_ptr<XMeasure> &meas);
91  virtual ~XDPL32XGF() {}
92 protected:
93  virtual void changeFreq(double mhz);
94  virtual void onRFONChanged(const Snapshot &shot, XValueNodeBase *);
95  virtual void onOLevelChanged(const Snapshot &shot, XValueNodeBase *);
96  virtual void onFMONChanged(const Snapshot &shot, XValueNodeBase *);
97  virtual void onAMONChanged(const Snapshot &shot, XValueNodeBase *);
98 private:
99 };
100 
101 //! Rhode-Schwartz SML01/02/03 SMV03
103 public:
104  XRhodeSchwartzSMLSMV(const char *name, bool runtime,
105  Transaction &tr_meas, const shared_ptr<XMeasure> &meas);
106  virtual ~XRhodeSchwartzSMLSMV() {}
107 protected:
108  virtual void changeFreq(double mhz);
109  virtual void onRFONChanged(const Snapshot &shot, XValueNodeBase *);
110  virtual void onOLevelChanged(const Snapshot &shot, XValueNodeBase *);
111  virtual void onFMONChanged(const Snapshot &shot, XValueNodeBase *);
112  virtual void onAMONChanged(const Snapshot &shot, XValueNodeBase *);
113 private:
114 };
115 #endif

Generated for KAME4 by  doxygen 1.8.3