-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfwhmscan.py
234 lines (200 loc) · 9.09 KB
/
fwhmscan.py
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
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
79
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
import CallUI
import plottingtools
import scanning_tools
import numpy as np
import json
import gisaxs
import settings
import shutil
def open_fwhmscan_window(self):
"""Opens window with FWHM scan setup."""
self.fwhmscan_window = CallUI.fwhmscanUI()
data = self.sampledata.gisaxs_data
layout = self.fwhmscan_window.map_preview
self.clearLayout(layout)
self.previewcanvas = plottingtools.singlePlotonCanvas(self, layout, data, title=self.filename)
with open("config.json", 'r') as f:
config = json.load(f)
try:
step_size = config["fwhmscan_stepsize"]
width = config["fwhmscan_width"]
qz_middle = config["fwhmscan_qzposition"]
heigth = config["fwhmscan_heigth"]
qy_stop = config["fwhmscan_qystop"]
except KeyError:
step_size = float(self.fwhmscan_window.step_size_entry.displayText())
qy_stop = float(self.fwhmscan_window.qy_stop_entry.displayText())
width = float(self.fwhmscan_window.width_entry.displayText())
qz_middle = float(self.fwhmscan_window.qz_pos_entry.displayText())
heigth = float(self.fwhmscan_window.heigth_entry.displayText())
self.fwhmscan_window.step_size_entry.setText(str(step_size))
self.fwhmscan_window.width_entry.setText(str(width))
self.fwhmscan_window.qz_pos_entry.setText(str(qz_middle))
self.fwhmscan_window.heigth_entry.setText(str(heigth))
self.fwhmscan_window.qy_stop_entry.setText(str(qy_stop))
self.fwhmscan_window.show()
self.fwhmscan_window.accepted.connect(lambda: press_fwhmscan(self))
def press_fwhmscan(self):
save_fwhmscan_settings(self)
fwhmscan(self)
def save_fwhmscan_settings(self):
with open("config.json", 'r') as f:
config = json.load(f)
config["fwhmscan_stepsize"] = float(self.fwhmscan_window.step_size_entry.displayText())
config["fwhmscan_qystop"] = float(self.fwhmscan_window.qy_stop_entry.displayText())
config["fwhmscan_width"] = float(self.fwhmscan_window.width_entry.displayText())
config["fwhmscan_qzposition"] = float(self.fwhmscan_window.qz_pos_entry.displayText())
config["fwhmscan_heigth"] = float(self.fwhmscan_window.heigth_entry.displayText())
with open("config.json", 'w') as f:
json.dump(config, f)
def open_fwhmscan_result_window(self, X, Y):
"""Opens results of FWHM scan."""
self.fwhmscan_result_window = CallUI.fwhmscan_resultUI()
layout = self.fwhmscan_result_window.fwhm_graph_layout
self.clearLayout(layout)
in_plane_label, out_of_plane_label = gisaxs.get_labels()
self.fwhmscan_result_window.save_button.clicked.connect(lambda: saveFile(self, X, Y))
figure = plottingtools.plotGraphOnCanvas(self, layout, X, Y, ylabel="FWHM (Å-1)", xlabel=in_plane_label,
title="FWHM scan", scale="linear",
revert=False, marker = "o")
self.fwhmscan_result_window.show()
def saveFile(self, X, Y):
"""Save file, will have to rewrite this to be more universal."""
filename = f"{self.filename[:-4]}_FWHMscan"
path = self.saveFileDialog(filename = filename, title="Save FWHM scan")
filename = path[0]
if filename[-4:] != ".txt":
filename = filename + ".txt"
array = np.stack([X, Y], axis=1)
np.savetxt(filename, array, delimiter="\t")
def fwhmscan(self):
"""Perform the FWHM scan.
This is just a prototype solution, will rewrite a proper version.
"""
qy_coordinate = 0
FWHM_list = []
FWHM_listminus = []
qy_list = []
qy_listminus = []
skiplist = []
step_size = float(self.fwhmscan_window.step_size_entry.displayText())
qy_stop = float(self.fwhmscan_window.qy_stop_entry.displayText())
width = float(self.fwhmscan_window.width_entry.displayText())
qz_middle = float(self.fwhmscan_window.qz_pos_entry.displayText())
heigth = float(self.fwhmscan_window.heigth_entry.displayText())
while qy_coordinate < qy_stop:
x1 = qy_coordinate - width/2
x2 = qy_coordinate + width/2
y1 = qz_middle + heigth/2
y2 = qz_middle - heigth/2
self.ROI_scan_rect.extents = [x1, x2, y1, y2]
startx, stopx, starty, stopy = scanning_tools.find_startstop(self)
intensity_list = scanning_tools.calc_cut(self, startx, stopx, starty, stopy, horizontal=False)
mapping = self.sampledata.mapping
if mapping == "Angular":
coordinatelist = self.sampledata.get_y_angular()[starty:stopy]
elif mapping == "q-space":
coordinatelist = self.sampledata.get_z_qspace()[starty:stopy]
else:
coordinatelist = self.sampledata.get_y_pixels()[starty:stopy]
self.sampledata.vertical_scan_x = coordinatelist
height = abs(startx - stopx)
intensity_list = [value / height for value in intensity_list]
self.sampledata.vertical_scan_y = intensity_list
self.sampledata.remove_background(horizontal=False)
self.sampledata.remove_zeroes()
try:
index_max = np.argmax(self.sampledata.vertical_scan_y)
except ValueError:
print("Couldn't get a FWHM at this position, skipping coordinate")
FWHM_list.append(0)
skiplist.append(qy_coordinate)
qy_list.append(qy_coordinate)
qy_coordinate += step_size
continue
qz = self.sampledata.vertical_scan_x[index_max]
FWHM = find_FWHM(self, position=qz)
FWHM_list.append(FWHM)
qy_list.append(qy_coordinate)
qy_coordinate += step_size
qy_coordinate = 0
while qy_coordinate > -qy_stop:
x1 = qy_coordinate - width/2
x2 = qy_coordinate + width/2
y1 = qz_middle + heigth/2
y2 = qz_middle - heigth/2
self.ROI_scan_rect.extents = [x1, x2, y1, y2]
startx, stopx, starty, stopy = scanning_tools.find_startstop(self)
intensity_list = scanning_tools.calc_cut(self, startx, stopx, starty, stopy, horizontal=False)
mapping = self.sampledata.mapping
if mapping == "Angular":
coordinatelist = self.sampledata.get_y_angular()[starty:stopy]
elif mapping == "q-space":
coordinatelist = self.sampledata.get_z_qspace()[starty:stopy]
else:
coordinatelist = self.sampledata.get_y_pixels()[starty:stopy]
self.sampledata.vertical_scan_x = coordinatelist
height = abs(startx - stopx)
intensity_list = [value / height for value in intensity_list]
self.sampledata.vertical_scan_y = intensity_list
self.sampledata.remove_background(horizontal=False)
self.sampledata.remove_zeroes()
try:
index_max = np.argmax(self.sampledata.vertical_scan_y)
except ValueError:
print("Couldn't get a FWHM at this position, skipping coordinate")
FWHM_listminus.append(0)
qy_listminus.append(qy_coordinate)
skiplist.append(qy_coordinate)
qy_coordinate -= step_size
continue
qz = self.sampledata.vertical_scan_x[index_max]
FWHM = find_FWHM(self, position=qz)
FWHM_listminus.append(FWHM)
#Temporary solution, fix before stable release!
qy_listminus.append(qy_coordinate)
qy_coordinate -= step_size
FWHM_average = []
qy_newlist = []
for index in range(len(qy_list)):
if (qy_list[index] not in skiplist) and (qy_listminus[index] not in skiplist):
if FWHM_list[index] < 0.001:
FWHM_list[index] = FWHM_listminus[index]
if FWHM_listminus[index] < 0.001:
FWHM_listminus[index] = FWHM_list[index]
if not (FWHM_list[index] == 0 and FWHM_listminus[index] == 0):
FWHM = (FWHM_list[index] + FWHM_listminus[index]) / 2
FWHM_average.append(FWHM)
qy_newlist.append(qy_list[index])
open_fwhmscan_result_window(self, qy_newlist, FWHM_average)
def find_FWHM(self, position, scan_type="vertical"):
"""
Find FWHM of the peak near position
Placeholder function, quite ugly right now."""
xdata = self.sampledata.vertical_scan_x
ydata = self.sampledata.vertical_scan_y
index_max = np.argmax(self.sampledata.vertical_scan_y)
qz = self.sampledata.vertical_scan_x[index_max]
peak_coordinate = qz
FWHM = 0
half_intensity = max(ydata) / 2
xs = np.sort(xdata)
ys = np.array(ydata)[np.argsort(xdata)]
found_left = False
found_right = False
mesh_step = 100000
# Will optimize this a bit
for index in range(mesh_step):
index = index / (mesh_step)
y_value_left = np.interp(peak_coordinate - index, xs, ys)
y_value_right = np.interp(peak_coordinate + index, xs, ys)
if found_left == False and y_value_left <= half_intensity:
left_boundary_value = peak_coordinate - index
found_left = True
if found_right == False and y_value_right <= half_intensity:
right_boundary_value = peak_coordinate + index
found_right = True
if found_left == True and found_right == True:
FWHM = right_boundary_value - left_boundary_value
break
return FWHM