Changeset a54bbf2b in sasview
- Timestamp:
- Sep 11, 2018 10:00:45 AM (6 years ago)
- Branches:
- ESS_GUI, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc
- Children:
- 2d47985
- Parents:
- 343d7fd
- Location:
- src/sas/qtgui
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/MainWindow/DataExplorer.py
r2b8286c ra54bbf2b 574 574 new_plots = [] 575 575 for item, plot in plots.items(): 576 if self.updatePlot(plot) and filename !=plot.name:576 if self.updatePlot(plot) or filename not in plot.name: 577 577 continue 578 578 # Don't plot intermediate results, e.g. P(Q), S(Q) … … 583 583 # Don't include plots from different fitpages, but always include the original data 584 584 if fitpage_name in plot.name or filename == plot.name: 585 # 'sophisticated' test to generate standalone plot for residuals586 if 'esiduals' in plot.title:585 # Residuals get their own plot 586 if plot.plot_role == Data1D.ROLE_RESIDUAL: 587 587 plot.yscale='linear' 588 588 self.plotData([(item, plot)]) … … 686 686 687 687 # Update the active chart list 688 #self.active_plots[new_plot.data.id] = new_plot688 self.active_plots[new_plot.data.name] = new_plot 689 689 690 690 def appendPlot(self): … … 729 729 data_id = data.name 730 730 if data_id in ids_keys: 731 self.active_plots[data_id].replacePlot(data_id, data) 731 # We have data, let's replace data that needs replacing 732 if data.plot_role != Data1D.ROLE_DATA: 733 self.active_plots[data_id].replacePlot(data_id, data) 732 734 return True 733 735 elif data_id in ids_vals: 734 list(self.active_plots.values())[ids_vals.index(data_id)].replacePlot(data_id, data) 736 if data.plot_role != Data1D.ROLE_DATA: 737 list(self.active_plots.values())[ids_vals.index(data_id)].replacePlot(data_id, data) 735 738 return True 736 739 return False -
src/sas/qtgui/MainWindow/DataManager.py
r4e255d1 ra54bbf2b 118 118 new_plot.path = path 119 119 new_plot.list_group_id = [] 120 # Assign the plot role to data 121 new_plot.plot_role = Data1D.ROLE_DATA 120 122 ##post data to plot 121 123 # plot data -
src/sas/qtgui/Perspectives/Fitting/FittingLogic.py
r61f0c75 ra54bbf2b 154 154 new_plot.xaxis(_xaxis, _xunit) 155 155 new_plot.yaxis(_yaxis, _yunit) 156 157 if component is not None: 158 new_plot.plot_role = Data1D.ROLE_DELETABLE #deletable 156 159 157 160 return new_plot -
src/sas/qtgui/Perspectives/Fitting/FittingWidget.py
rf3cc979 ra54bbf2b 2481 2481 residuals_plot = FittingUtilities.plotResiduals(self.data, weighted_data) 2482 2482 residuals_plot.id = "Residual " + residuals_plot.id 2483 residuals_plot.plot_role = Data1D.ROLE_RESIDUAL 2483 2484 self.createNewIndex(residuals_plot) 2484 2485 return residuals_plot -
src/sas/qtgui/Plotting/PlotterData.py
rcee5c78 ra54bbf2b 17 17 """ 18 18 """ 19 ROLE_DATA=0 20 ROLE_DEFAULT=1 21 ROLE_DELETABLE=2 22 ROLE_RESIDUAL=3 19 23 def __init__(self, x=None, y=None, dx=None, dy=None): 20 24 """ … … 35 39 self.title = "" 36 40 self.scale = None 41 # plot_role: 42 # 0: data - no reload on param change 43 # 1: normal lifecycle (fit) 44 # 2: deletable on model change (Q(I), S(I)...) 45 # 3: separate chart on Show Plot (residuals) 46 self.plot_role = Data1D.ROLE_DEFAULT 37 47 38 48 def copy_from_datainfo(self, data1d): … … 184 194 self.title = "" 185 195 self.scale = None 196 # Always default 197 self.plot_role = Data1D.ROLE_DEFAULT 186 198 187 199 def copy_from_datainfo(self, data2d): -
src/sas/qtgui/Utilities/GuiUtils.py
r5d28d6b ra54bbf2b 322 322 assert isinstance(item, QtGui.QStandardItem) 323 323 324 # lists of plots names/ids for all deletable plots on item 324 325 names = [p.name for p in new_plots if p.name is not None] 325 326 ids = [p.id for p in new_plots if p.id is not None] … … 329 330 for index in range(item.rowCount()): 330 331 plot_item = item.child(index) 331 if plot_item.isCheckable(): 332 plot_data = plot_item.child(0).data() 333 if (plot_data.id is not None) and (plot_data.id not in ids) and (plot_data.name not in names): 334 items_to_delete.append(plot_item) 332 if not plot_item.isCheckable(): 333 continue 334 plot_data = plot_item.child(0).data() 335 if (plot_data.id is not None) and \ 336 (plot_data.id not in ids) and \ 337 (plot_data.name not in names) and \ 338 (plot_data.plot_role == Data1D.ROLE_DELETABLE): 339 items_to_delete.append(plot_item) 335 340 336 341 for plot_item in items_to_delete:
Note: See TracChangeset
for help on using the changeset viewer.