UltraScan III
us_eqhistogram.h
Go to the documentation of this file.
1 #ifndef US_HISTOGRAM_H
2 #define US_HISTOGRAM_H
3 
4 #include "us_extern.h"
5 #include "us_widgets_dialog.h"
6 #include "us_globeq_data.h"
7 #include "us_plot.h"
8 
10 
12 {
13  Q_OBJECT
14 
15  public:
16  US_EqHistogram( double, QVector< EqScanFit >&,
17  QWidget* = 0, Qt::WindowFlags = 0 );
18 
19  private:
20  double od_limit; // OD Limit value
21  QVector< EqScanFit >& scanfits; // Scan fits vector
22 
23  US_Plot* hplot; // Histogram plot layout
24  QwtPlot* hist_plot; // The histogram plot
25 
26  private slots:
27 };
28 #endif
29