@@ -261,16 +261,24 @@ def plot_bragg_bank(main_window):
261
261
# multiple GSAS file/single bank mode: get GSAS group from tree
262
262
gss_group_list = main_window .rietveld_ui .treeWidget_braggWSList .get_main_nodes ()
263
263
gss_group_list .remove ('workspaces' )
264
-
265
264
else :
266
265
# single GSAS file mode
267
266
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.
268
271
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' )
270
277
else :
271
278
raise RuntimeError (
272
279
'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 ]
274
282
275
283
# remove banks from plot
276
284
for gss_group_name in gss_group_list :
@@ -282,22 +290,42 @@ def plot_bragg_bank(main_window):
282
290
for ws_group in gss_group_list :
283
291
plot_data_dict [ws_group ] = new_bank_list [:]
284
292
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
+
285
304
if plot_multi_gss :
286
305
main_window .rietveld_ui .graphicsView_bragg .set_to_single_gss (False )
287
306
else :
288
307
main_window .rietveld_ui .graphicsView_bragg .set_to_single_gss (True )
289
308
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" )
290
316
plot_data_dict = {ws_name_list [0 ]: plot_data_dict [ws_name_list [0 ]]}
291
317
292
318
# 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 )
295
323
296
- # reset
297
- reset_bragg_data_range (main_window , main_window ._currBraggXUnit )
324
+ # reset
325
+ reset_bragg_data_range (main_window , main_window ._currBraggXUnit )
298
326
299
- # rescale
300
- do_rescale_bragg (main_window )
327
+ # rescale
328
+ do_rescale_bragg (main_window )
301
329
302
330
303
331
def do_rescale_bragg (main_window ):
@@ -526,10 +554,18 @@ def plot_bragg(main_window, ws_list, bankIds, clear_canvas=False):
526
554
527
555
# plot all workspsaces
528
556
plot_data_dict = dict ()
557
+ leaf_dict_temp = main_window .rietveld_ui .treeWidget_braggWSList ._leafDict
529
558
for bragg_ws_name in ws_list :
530
559
# construct dictionary for plotting
531
560
# 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
533
569
534
570
# plot
535
571
main_window .rietveld_ui .graphicsView_bragg .plot_banks (
0 commit comments