UltraScan III
us_intensity.h
Go to the documentation of this file.
1 #ifndef US_INTENSITY_H
3 #define US_INTENSITY_H
4 
5 #include <QtGui>
6 
7 #include "us_extern.h"
8 #include "us_widgets_dialog.h"
9 #include "us_plot.h"
10 
12 
14 {
15  Q_OBJECT
16 
17  public:
22  US_Intensity( const QString, const QString, const QVector< double >&,
23  const QVector< double >& );
24 
25  private:
26  QwtPlot* data_plot;
27  const QVector< double >& dataIn;
28  const QVector< double >& scanIn;
29 
30  void draw_plot ( const QVector< double >&,
31  const QVector< double >& );
32 
33 };
34 #endif