Skip to content

Commit 9c7241c

Browse files
Merge pull request #306 from Kvieta1990/master
Bragg plot bugs fixed.
2 parents f490436 + 08c5d35 commit 9c7241c

File tree

2 files changed

+94
-12
lines changed

2 files changed

+94
-12
lines changed

addie/rietveld/braggtree.py

+48-2
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,45 @@ def __init__(self, parent):
6161
# reset
6262
self.reset_bragg_tree()
6363

64+
def process_selected_nodes(self, selected_nodes):
65+
"""
66+
Process selected nodes so that returned nodes will only
67+
contain main leaf but not any children.
68+
69+
If both parent and children are selected from the tree, we want
70+
to get rid of children from the selected wks list. Meanwhile, we want
71+
to check the box corresponding to the selected children.
72+
73+
Arguments:
74+
selected_nodes {list} -- List of selected nodes
75+
Return:
76+
selected_nodes_temp {list} -- List of nodes with all children removed.
77+
"""
78+
79+
leaf_dict_temp = self._main_window.rietveld_ui.treeWidget_braggWSList._leafDict
80+
for item_temp in selected_nodes:
81+
if item_temp not in list(leaf_dict_temp.keys()):
82+
parent_found = False
83+
for key, list_temp in leaf_dict_temp.items():
84+
for item_temp_1 in list_temp:
85+
if item_temp in item_temp_1:
86+
bank_temp = list_temp.index(item_temp_1) + 1
87+
self._main_window._braggBankWidgets[bank_temp].setChecked(True)
88+
parent_found = True
89+
parent_in_tree = key
90+
break
91+
if parent_found:
92+
break
93+
if parent_in_tree not in selected_nodes:
94+
selected_nodes.append(parent_in_tree)
95+
96+
selected_nodes_temp = []
97+
for item_temp in selected_nodes:
98+
if item_temp in list(leaf_dict_temp.keys()):
99+
selected_nodes_temp.append(item_temp)
100+
101+
return selected_nodes_temp
102+
64103
def _get_bank_id(self, bank_wksp):
65104
"""Get bank ID from a workspace name with the structure:
66105
Bank 1 - <float for theta angle>
@@ -234,6 +273,9 @@ def do_plot_ws(self):
234273
# get the selected items of tree and sort them alphabetically
235274
item_list = self.get_selected_items()
236275
item_list = [str(item.text()) for item in item_list]
276+
# item_list.sort()
277+
278+
item_list = self.process_selected_nodes(item_list)
237279
item_list.sort()
238280

239281
# FIXME/LATER - replace this by signal
@@ -317,11 +359,15 @@ def do_select_gss_node(self):
317359
"""
318360
# get selected nodes
319361
selected_nodes = self.get_selected_items()
362+
selected_nodes = [str(item.text()) for item in selected_nodes]
363+
364+
selected_nodes = self.process_selected_nodes(selected_nodes)
320365

321366
# set to plot
322367
for gss_group_node in selected_nodes:
323-
gss_group_name = str(gss_group_node.text())
324-
self._main_window.set_bragg_ws_to_plot(gss_group_name)
368+
# gss_group_name = str(gss_group_node.text())
369+
# self._main_window.set_bragg_ws_to_plot(gss_group_name)
370+
self._main_window.set_bragg_ws_to_plot(gss_group_node)
325371

326372
def get_current_main_nodes(self):
327373
"""

addie/rietveld/event_handler.py

+46-10
Original file line numberDiff line numberDiff line change
@@ -261,16 +261,24 @@ def plot_bragg_bank(main_window):
261261
# multiple GSAS file/single bank mode: get GSAS group from tree
262262
gss_group_list = main_window.rietveld_ui.treeWidget_braggWSList.get_main_nodes()
263263
gss_group_list.remove('workspaces')
264-
265264
else:
266265
# single GSAS file mode
267266
status, ret_obj = main_window.rietveld_ui.treeWidget_braggWSList.get_current_main_nodes()
267+
# ZYP -> Sometimes, it can happen that the returned `status` here is
268+
# `True`, but we have empty `ret_obj`. So we need to tackle such a
269+
# situation. Since this will happen when multiple GSS files exist in wks,
270+
# and therefore when this happens, we just simply roll into the multiple GSS mode.
268271
if status:
269-
gss_group = ret_obj[0]
272+
if len(ret_obj) > 0:
273+
gss_group = ret_obj[0]
274+
else:
275+
gss_group_list = main_window.rietveld_ui.treeWidget_braggWSList.get_main_nodes()
276+
gss_group_list.remove('workspaces')
270277
else:
271278
raise RuntimeError(
272279
'Unable to get current selected main node(s) due to {0}.'.format(ret_obj))
273-
gss_group_list = [gss_group]
280+
if len(ret_obj) > 0:
281+
gss_group_list = [gss_group]
274282

275283
# remove banks from plot
276284
for gss_group_name in gss_group_list:
@@ -282,22 +290,42 @@ def plot_bragg_bank(main_window):
282290
for ws_group in gss_group_list:
283291
plot_data_dict[ws_group] = new_bank_list[:]
284292

293+
# ZYP -> Check whether selected bank (to plot) exists or not.
294+
# ZYP -> If not, no action will be taken and msg will be printed out to terminal.
295+
banks_checker_ok = True
296+
leaf_dict_temp = main_window.rietveld_ui.treeWidget_braggWSList._leafDict
297+
for ws_group in gss_group_list:
298+
for bank_to_check in plot_data_dict[ws_group]:
299+
if int(bank_to_check) > len(leaf_dict_temp[ws_group]):
300+
print("Bank-{0} not existing in {1} and therefore not to be plotted.".format(bank_to_check, ws_group))
301+
banks_checker_ok = False
302+
break
303+
285304
if plot_multi_gss:
286305
main_window.rietveld_ui.graphicsView_bragg.set_to_single_gss(False)
287306
else:
288307
main_window.rietveld_ui.graphicsView_bragg.set_to_single_gss(True)
289308
status, ws_name_list = main_window.rietveld_ui.treeWidget_braggWSList.get_current_main_nodes()
309+
# ZYP -> Sometimes, it can happen that the returned `status` here is
310+
# `True`, but we have empty `ret_obj`. So we need to tackle such a
311+
# situation. Since this will happen when multiple GSS files exist in wks,
312+
# and therefore when this happens, we just simply roll into the multiple GSS mode.
313+
if len(ws_name_list) == 0:
314+
ws_name_list = main_window.rietveld_ui.treeWidget_braggWSList.get_main_nodes()
315+
ws_name_list.remove("workspaces")
290316
plot_data_dict = {ws_name_list[0]: plot_data_dict[ws_name_list[0]]}
291317

292318
# plot new
293-
main_window.rietveld_ui.graphicsView_bragg.plot_banks(
294-
plot_data_dict, main_window._currBraggXUnit)
319+
# ZYP -> Check whether selected bank (to plot) exists or not.
320+
if banks_checker_ok:
321+
main_window.rietveld_ui.graphicsView_bragg.plot_banks(
322+
plot_data_dict, main_window._currBraggXUnit)
295323

296-
# reset
297-
reset_bragg_data_range(main_window, main_window._currBraggXUnit)
324+
# reset
325+
reset_bragg_data_range(main_window, main_window._currBraggXUnit)
298326

299-
# rescale
300-
do_rescale_bragg(main_window)
327+
# rescale
328+
do_rescale_bragg(main_window)
301329

302330

303331
def do_rescale_bragg(main_window):
@@ -526,10 +554,18 @@ def plot_bragg(main_window, ws_list, bankIds, clear_canvas=False):
526554

527555
# plot all workspsaces
528556
plot_data_dict = dict()
557+
leaf_dict_temp = main_window.rietveld_ui.treeWidget_braggWSList._leafDict
529558
for bragg_ws_name in ws_list:
530559
# construct dictionary for plotting
531560
# main_window._myController.get_bank_numbers(ws_group)
532-
plot_data_dict[bragg_ws_name] = bankIds
561+
to_plot = []
562+
for bank_temp in bankIds:
563+
if int(bank_temp) <= len(leaf_dict_temp[bragg_ws_name]):
564+
to_plot.append(bank_temp)
565+
else:
566+
print("Bank-{0} not existing in {1} and therefore not to be plotted.".format(bank_temp, bragg_ws_name))
567+
# plot_data_dict[bragg_ws_name] = bankIds
568+
plot_data_dict[bragg_ws_name] = to_plot
533569

534570
# plot
535571
main_window.rietveld_ui.graphicsView_bragg.plot_banks(

0 commit comments

Comments
 (0)