Blame view

interactivemie.h 8.75 KB
8ffb8373   dmayerich   Improved material...
1
2
3
  #ifndef INTERACTIVEMIE_H
  #define INTERACTIVEMIE_H
  
887d4441   David Mayerich   updates from STIM...
4
  #include <QtWidgets/QMainWindow>
8ffb8373   dmayerich   Improved material...
5
  #include <QDragEnterEvent>
887d4441   David Mayerich   updates from STIM...
6
  #include <qmimedata.h>
8ffb8373   dmayerich   Improved material...
7
8
9
10
11
12
13
14
15
16
17
18
19
  #include <qfiledialog.h>
  #include <qinputdialog.h>
  #include "ui_interactivemie.h"
  #include "qtDistortionDialog.h"
  #include "globals.h"
  
  extern qtDistortionDialog* distortionDialog;
  
  class InteractiveMie : public QMainWindow
  {
  Q_OBJECT
  
  public:
887d4441   David Mayerich   updates from STIM...
20
  InteractiveMie(QWidget *parent = 0, Qt::WindowFlags flags = 0);
8ffb8373   dmayerich   Improved material...
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
  ~InteractiveMie();
  void closeEvent(QCloseEvent *event);
  bool updating;
  
  void refreshUI()
  {
  	updating = true;
  
  	ui.spinNuMin->setValue(nuMin);
  	ui.spinNuMax->setValue(nuMax);
  	ui.spinAMin->setValue(aMin);
  	ui.spinAMax->setValue(aMax);
  	ui.spinRadius->setValue(radius);
  	ui.spinBaseIR->setValue(baseIR);
  	ui.spinScaleK->setValue(cA);
  	ui.spinObjNAi->setValue(oNAi);
  	ui.spinObjNAo->setValue(oNAo);
  	ui.spinCondNAi->setValue(cNAi);
  	ui.spinCondNAo->setValue(cNAo);
  	ui.spinError->setValue(minMSE);
  	ui.spinMaxIter->setValue(maxFitIter);
  	ui.spinI0Scale->setValue(scaleI0);
  
  	//display spectra values
  	ui.chkDisplaySimSpec->setChecked(dispSimSpec);
  	ui.chkDisplayRefSpec->setChecked(dispRefSpec);
  	ui.chkDisplaySimK->setChecked(dispSimK);
  	ui.chkDisplayMatK->setChecked(dispMatK);
  	ui.chkDisplaySimN->setChecked(dispSimN);
  	ui.chkDisplayMatN->setChecked(dispMatN);
  	ui.spinDispScaleK->setValue(kMax);
  	ui.spinDispScaleN->setValue(nMag);
  
  	//material selection combo box
  	ui.cmbMaterial->clear();
  	for(unsigned int i=0; i<MaterialList.size(); i++)
  		ui.cmbMaterial->addItem(MaterialList[i].name.c_str(), i);
  	ui.cmbMaterial->setCurrentIndex(currentMaterial);
  
  	updating = false;
  }
  
  void dragEnterEvent(QDragEnterEvent *event)
  {
  	cout<<"This is a test."<<endl;
  	QStringList s = event->mimeData()->formats();
  	if (event->mimeData()->hasFormat("application/x-qt-windows-mime;value=\"FileName\"") ||
  			event->mimeData()->hasFormat("text/plain"))
  	{
  		event->acceptProposedAction();
  
  	}
  }
  
  void dropEvent(QDropEvent *event)
  {
  	//cout<<"Challenge Accepted."<<endl;
  	RefSpectrum.clear();
887d4441   David Mayerich   updates from STIM...
79
  	RefSpectrum.push_back(SetReferenceSpectrum(event->mimeData()->text().toLatin1().data()));
8ffb8373   dmayerich   Improved material...
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
  	UpdateDisplay();
  }
  
  private:
  Ui::InteractiveMieClass ui;
  
  public slots:
  //display parameters
  void on_spinNuMin_valueChanged(int i) {
  	if(updating) return;
  	nuMin = (float)i;
  	UpdateDisplay();
  }
  void on_spinNuMax_valueChanged(int i) {
  	if(updating) return;
  	nuMax = (float)i;
  	UpdateDisplay();
  }
  void on_spinAMin_valueChanged(double d) {
  	if(updating) return;
  	aMin = d;
  	UpdateDisplay();
  }
  void on_spinAMax_valueChanged(double d) {
  	if(updating) return;
  	aMax = d;
  	UpdateDisplay();
  }
  void on_chkDisplaySimSpec_clicked(bool b) {
  	if(updating) return;
  	dispSimSpec = b;
  	UpdateDisplay();
  }
  void on_chkDisplayRefSpec_clicked(bool b) {
  	if(updating) return;
  	dispRefSpec = b;
  	UpdateDisplay();
  }
  void on_chkDisplaySimK_clicked(bool b) {
  	if(updating) return;
  	dispSimK = b;
  	UpdateDisplay();
  }
  void on_chkDisplayMatK_clicked(bool b) {
  	if(updating) return;
  	dispMatK = b;
  	UpdateDisplay();
  }
  void on_chkDisplaySimN_clicked(bool b) {
  	if(updating) return;
  	dispSimN = b;
  	UpdateDisplay();
  }
  void on_chkDisplayMatN_clicked(bool b) {
  	if(updating) return;
  	dispMatN = b;
  	UpdateDisplay();
  }
  void on_spinDispScaleK_valueChanged(double d) {
  	if(updating) return;
  	kMax = d;
  	UpdateDisplay();
  }
  void on_spinDispScaleN_valueChanged(double d) {
  	if(updating) return;
  	nMag = d;
  	UpdateDisplay();
  }
  void on_radDisplayAbsorbance_clicked(bool b) {
  	if(updating) return;
  	dispSimType = AbsorbanceSpecType;
  	SimulateSpectrum();
  	UpdateDisplay();
  }
  void on_radDisplayIntensity_toggled(bool b) {
  	if(updating) return;
  	dispSimType = IntensitySpecType;
  	SimulateSpectrum();
  	UpdateDisplay();
  }
  void on_chkNormalize_clicked(bool b) {
  	if(updating) return;
  	dispNormalize = b;
  	SimulateSpectrum();
  	UpdateDisplay();
  }
  void on_spinNormFactor_valueChanged(double d) {
  	if(updating) return;
  	dispNormFactor = d;
  	SimulateSpectrum();
  	UpdateDisplay();
  }
  
  //material parameters
  void on_spinRadius_valueChanged(double d) {
  	if(updating) return;
  	radius = d;
  	SimulateSpectrum();
  	UpdateDisplay();
  }
  void on_chkAdjustIR_clicked(bool b) {
  	if(updating) return;
  	//allow the user to change the mean n and k values
  	ui.spinBaseIR->setEnabled(b);
  	ui.spinScaleK->setEnabled(b);
  	
  }
  void on_spinBaseIR_valueChanged(double d) {
  	if(updating) return;
  	baseIR = d;
  	ChangeAbsorbance();
  	SimulateSpectrum();
  	UpdateDisplay();
  }
  void on_spinScaleK_valueChanged(double d) {
  	if(updating) return;
  	cA = d;
  	ChangeAbsorbance();
  	SimulateSpectrum();
  	UpdateDisplay();
  }
  void on_chkApplyMaterial_clicked(bool b) {
  	if(updating) return;
  	applyMaterial = b;
  	SimulateSpectrum();
  	UpdateDisplay();
  }
  void on_cmbMaterial_currentIndexChanged(int i) {
  	if(updating) return;
  
  	currentMaterial = i;
  	SetMaterial();
  	SimulateSpectrum();
  	UpdateDisplay();
  	refreshUI();
  }
  
  //optical parameters
  void on_spinCondNAi_valueChanged(double d) {
  	cNAi = d;
  	SimulateSpectrum();
  	UpdateDisplay();
  }
  void on_spinCondNAo_valueChanged(double d) {
  	cNAo = d;
  	SimulateSpectrum();
  	UpdateDisplay();
  }
  void on_spinObjNAi_valueChanged(double d) {
  	oNAi = d;
  	SimulateSpectrum();
  	UpdateDisplay();
  }
  void on_spinObjNAo_valueChanged(double d) {
  	oNAo = d;
  	SimulateSpectrum();
  	UpdateDisplay();
  }
  void on_radTransmissionOptics_clicked(bool d) {
  	ui.spinCondNAi->setEnabled(true);
  	ui.spinCondNAo->setEnabled(true);
  	opticsMode = TransmissionOpticsType;
  	SimulateSpectrum();
  	UpdateDisplay();
  }
  void on_radReflectionOptics_clicked(bool d) {
  	ui.spinCondNAi->setEnabled(false);
  	ui.spinCondNAo->setEnabled(false);
  	ui.radDisplayAbsorbance->setEnabled(false);
  	ui.radDisplayIntensity->setChecked(true);
  	opticsMode = ReflectionOpticsType;
  	SimulateSpectrum();
  	UpdateDisplay();
  }
  void on_chkPointDetector_clicked(bool b) {
  	if(b)
  	{
  		pointDetector = true;
  		ui.spinObjectiveSamples->setEnabled(false);
  	}
  	else
  	{
  		pointDetector = false;
  		ui.spinObjectiveSamples->setEnabled(true);
  	}
  
  	SimulateSpectrum();
  	UpdateDisplay();
  }
  
  void on_spinObjectiveSamples_valueChanged(int i) {
  	objectiveSamples = i;
  	SimulateSpectrum();
  	UpdateDisplay();
  }
  
  //Fitting
  void on_spinMaxIter_valueChanged(int i) {
  	maxFitIter = i;
  }
  void on_spinError_valueChanged(double d) {
  	minMSE = d;
  }
  void on_spinI0Scale_valueChanged(double d) {
  	scaleI0 = d;
  	SimulateSpectrum();
  	UpdateDisplay();
  }
  void on_spinRefSlope_valueChanged(double d) {
  	refSlope = d;
  	UpdateDisplay();
  }
  
  //display settings
  
  //Buttons
  void on_btnFit_clicked() {
  	FitDisplay();
  	refreshUI();
  }
  void on_btnSave_clicked() {
  	SaveState();
  }
  void on_btnReset_clicked() {
  	SetDefaults();
  	SimulateSpectrum();
  	UpdateDisplay();
  	refreshUI();
  }
  void on_btnResetK_clicked() {
  	ChangeAbsorbance();
  	SimulateSpectrum();
  	UpdateDisplay();
  }
  void on_btnEstimateK_clicked() {
  	EstimateMaterial();
  	SimulateSpectrum();
  	UpdateDisplay();
  }
  void on_btnDistortion_clicked() {
  	//ComputeDistortion();
  	//DistortionMap();
  	cout<<"Distortion"<<endl;
  	distortionDialog->show();
  }
  void on_btnTimings_clicked() {
  	PD.PrintResults(cout);
  }
  
  //menu items
  void on_mnuLoadReference_triggered() {
  	QString fileName = QFileDialog::getOpenFileName(this, tr("Open Reference Spectrum"));
  
  	if(fileName != QString::null) {
  		RefSpectrum.clear();
887d4441   David Mayerich   updates from STIM...
335
  		RefSpectrum.push_back(LoadSpectrum(fileName.toLatin1().data()));
8ffb8373   dmayerich   Improved material...
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
  	}
  	UpdateDisplay();
  }
  
  void on_mnuLoadMaterial_triggered() {
  
  	//first load the imaginary part
  	QString fileName = QFileDialog::getOpenFileName(this, tr("Open Material Spectrum"));
  
  	//exit if no file was selected
  	/*if(kFileName == QString::null)
  		return;
  
  	QString nFileName = QFileDialog::getOpenFileName(this, tr("Open Imaginary (n) Spectrum"));*/
  
  	//request the material name
  	QString matName = QInputDialog::getText(this, tr("Material Name"), tr("Enter material name:"));
  
  	//if a real part was given, load both
  	/*if(nFileName != QString::null)
  		LoadMaterial(kFileName.toAscii().data(), nFileName.toAscii().data(), matName.toAscii().data());
  	else
  		LoadMaterial(kFileName.toAscii().data(), matName.toAscii().data());*/
887d4441   David Mayerich   updates from STIM...
359
  	LoadMaterial(fileName.toLatin1().data(), matName.toLatin1().data());
8ffb8373   dmayerich   Improved material...
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
  
  	//add the new material to the combo box
  	refreshUI();
  }
  void on_mnuLoadSource_triggered() {
  	cout<<"Load source."<<endl;
  }
  void on_chkSourceSpectrum_clicked(bool b) {
  
  	useSourceSpectrum = b;
  	SimulateSpectrum();
  	UpdateDisplay();
  
  }
  
  void on_mnuSaveSim_triggered() {
  	//first load the imaginary part
  	QString fileName = QFileDialog::getSaveFileName(this, tr("Save Simulated Spectrum"));
887d4441   David Mayerich   updates from STIM...
378
  	SaveSimulation(fileName.toLatin1().data());
8ffb8373   dmayerich   Improved material...
379
380
381
382
383
384
385
386
387
388
389
  }
  
  /*void on_mnuSaveK_triggered() {
  	//first load the imaginary part
  	QString fileName = QFileDialog::getSaveFileName(this, tr("Save Imaginary Index of Refraction (k)"));
  	SaveK(fileName.toAscii().data());
  }*/
  
  void on_mnuSaveMaterial_triggered() {
  	//first load the imaginary part
  	QString fileName = QFileDialog::getSaveFileName(this, tr("Save Real Index of Refraction (n)"));
887d4441   David Mayerich   updates from STIM...
390
  	SaveMaterial(fileName.toLatin1().data());
8ffb8373   dmayerich   Improved material...
391
392
393
394
395
396
397
  }
  
  
  
  };
  
  #endif // INTERACTIVEMIE_H