usernetworkanalyzer.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 usernetworkanalyerH
15 #define usernetworkanalyerH
16 
17 #include "networkanalyzer.h"
18 #include "chardevicedriver.h"
19 //---------------------------------------------------------------------------
20 
21 //! Base class for HP/Agilent Network Analyzer.
22 class XAgilentNetworkAnalyzer : public XCharDeviceDriver<XNetworkAnalyzer> {
23 public:
24  XAgilentNetworkAnalyzer(const char *name, bool runtime,
25  Transaction &tr_meas, const shared_ptr<XMeasure> &meas);
26  virtual ~XAgilentNetworkAnalyzer() {}
27 protected:
28  virtual void onStartFreqChanged(const Snapshot &shot, XValueNodeBase *);
29  virtual void onStopFreqChanged(const Snapshot &shot, XValueNodeBase *);
30  virtual void onAverageChanged(const Snapshot &shot, XValueNodeBase *);
31  virtual void onPointsChanged(const Snapshot &shot, XValueNodeBase *);
32 
33  virtual void onCalOpenTouched(const Snapshot &shot, XTouchableNode *) {}
34  virtual void onCalShortTouched(const Snapshot &shot, XTouchableNode *) {}
35  virtual void onCalTermTouched(const Snapshot &shot, XTouchableNode *) {}
36  virtual void onCalThruTouched(const Snapshot &shot, XTouchableNode *) {}
37 
38  virtual void getMarkerPos(unsigned int num, double &x, double &y);
39  virtual void oneSweep();
40  virtual void startContSweep();
41  virtual void acquireTrace(shared_ptr<RawData> &, unsigned int ch);
42  //! Converts raw to dispaly-able
43  virtual void convertRaw(RawDataReader &reader, Transaction &tr) throw (XRecordError&);
44 
45  //! Be called just after opening interface. Call start() inside this routine appropriately.
46  virtual void open() throw (XKameError &);
47 
48  virtual void acquireTraceData(unsigned int ch, unsigned int len) = 0;
49  virtual void convertRawBlock(RawDataReader &reader, Transaction &tr,
50  unsigned int len) throw (XRecordError&) = 0;
51 private:
52 };
53 
54 //! HP/Agilent 8711C/8712C/8713C/8714C Network Analyzer.
56 public:
57  XHP8711(const char *name, bool runtime,
58  Transaction &tr_meas, const shared_ptr<XMeasure> &meas) :
59  XAgilentNetworkAnalyzer(name, runtime, ref(tr_meas), meas) {}
60  virtual ~XHP8711() {}
61 
62  virtual void acquireTraceData(unsigned int ch, unsigned int len);
63  virtual void convertRawBlock(RawDataReader &reader, Transaction &tr,
64  unsigned int len) throw (XRecordError&);
65 private:
66 };
67 
68 //! Agilent E5061A/5062A Network Analyzer.
69 class XAgilentE5061 : public XHP8711 {
70 public:
71  XAgilentE5061(const char *name, bool runtime,
72  Transaction &tr_meas, const shared_ptr<XMeasure> &meas) :
73  XHP8711(name, runtime, ref(tr_meas), meas) {}
74  virtual ~XAgilentE5061() {}
75 
76  virtual void acquireTraceData(unsigned int ch, unsigned int len);
77  virtual void convertRawBlock(RawDataReader &reader, Transaction &tr,
78  unsigned int len) throw (XRecordError&);
79 private:
80 };
81 
82 //! DG8SAQ VNWA3E via a custom DLL.
83 class XVNWA3ENetworkAnalyzer : public XCharDeviceDriver<XNetworkAnalyzer> {
84 public:
85  XVNWA3ENetworkAnalyzer(const char *name, bool runtime,
86  Transaction &tr_meas, const shared_ptr<XMeasure> &meas);
87  virtual ~XVNWA3ENetworkAnalyzer() {}
88 protected:
89  virtual void onStartFreqChanged(const Snapshot &shot, XValueNodeBase *);
90  virtual void onStopFreqChanged(const Snapshot &shot, XValueNodeBase *);
91  virtual void onAverageChanged(const Snapshot &shot, XValueNodeBase *) {}
92  virtual void onPointsChanged(const Snapshot &shot, XValueNodeBase *) {}
93 
94  virtual void onCalOpenTouched(const Snapshot &shot, XTouchableNode *) {}
95  virtual void onCalShortTouched(const Snapshot &shot, XTouchableNode *) {}
96  virtual void onCalTermTouched(const Snapshot &shot, XTouchableNode *) {}
97  virtual void onCalThruTouched(const Snapshot &shot, XTouchableNode *) {}
98 
99  virtual void getMarkerPos(unsigned int num, double &x, double &y);
100  virtual void oneSweep();
101  virtual void startContSweep();
102  virtual void acquireTrace(shared_ptr<RawData> &, unsigned int ch);
103  //! Converts raw to dispaly-able
104  virtual void convertRaw(RawDataReader &reader, Transaction &tr) throw (XRecordError&);
105 
106  //! Be called just after opening interface. Call start() inside this routine appropriately.
107  virtual void open() throw (XKameError &);
108 };
109 #endif

Generated for KAME4 by  doxygen 1.8.3