UltraScan III
us_second_moment.h
Go to the documentation of this file.
1 #ifndef US_SECOND_MONENT_H
2 #define US_SECOND_MOMENT_H
3 
4 #include "us_analysis_base2.h"
5 #include "us_editor.h"
6 #include "us_math2.h"
7 
9 {
10  Q_OBJECT
11 
12  public:
14 
15  private:
16  double average_2nd;
17  double* smPoints;
18  double* smSeconds;
20 
21  void data_plot ( void );
22 
23  private slots:
24  void write_report ( QTextStream& );
25  void exclude ( void );
26  void view ( void );
27  void save ( void );
28  void help ( void )
29  { showHelp.show_help( "manual/second_moment.html" ); };
30 };
31 #endif