-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathyieldcalc.h
38 lines (29 loc) · 880 Bytes
/
yieldcalc.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#ifndef YIELDCALC_H
#define YIELDCALC_H
#include <QDialog>
namespace Ui {
class YieldCalc;
}
class YieldCalc : public QDialog
{
Q_OBJECT
public:
explicit YieldCalc(QWidget *parent = nullptr);
QStringList ReadOptimFile(QString filename);
void Yield_Analysis(QStringList OptimParams, double standardDevVal);
~YieldCalc();
private slots:
QVector<double> MakeRandNum(double meanVal, double sigmaVal, int datacount);
void on_TestButton_3_clicked();
void onResetClicked();
void on_buttonBox_accepted();
void on_buttonBox_rejected();
void on_toolButtonNetlist_3_clicked();
void on_toolButtonSolution_3_clicked();
void on_toolButtonParam_3_clicked();
void on_toolButtonTempF_3_clicked();
void on_toolButtonOutF_3_clicked();
private:
Ui::YieldCalc *ui;
};
#endif // YIELDCALC_H