Changeset 9463ca2 in sasview for src/sas/qtgui/Perspectives/Fitting/FittingWidget.py
- Timestamp:
- Aug 30, 2018 10:47:39 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:
- eef298d4
- Parents:
- b8080e1
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/Perspectives/Fitting/FittingWidget.py
r906e0c7 r9463ca2 2275 2275 pq_data.symbol = "Line" 2276 2276 self.createNewIndex(pq_data) 2277 # self.communicate.plotUpdateSignal.emit([pq_data]) 2277 2278 new_plots.append(pq_data) 2278 2279 if sq_data is not None: 2279 2280 sq_data.symbol = "Line" 2280 2281 self.createNewIndex(sq_data) 2282 # self.communicate.plotUpdateSignal.emit([sq_data]) 2281 2283 new_plots.append(sq_data) 2282 2284 2283 2285 if self.data_is_loaded: 2284 2286 GuiUtils.deleteRedundantPlots(self.all_data[self.data_index], new_plots) 2287 2288 for plot in new_plots: 2289 if hasattr(plot, "id") and "esidual" in plot.id: 2290 # TODO: fix updates to residuals plot 2291 pass 2292 else: 2293 self.communicate.plotUpdateSignal.emit([plot]) 2285 2294 2286 2295 def complete2D(self, return_data): … … 2294 2303 def calculateResiduals(self, fitted_data): 2295 2304 """ 2296 Calculate and print Chi2 and display chart of residuals 2305 Calculate and print Chi2 and display chart of residuals. Returns residuals plot object. 2297 2306 """ 2298 2307 # Create a new index for holding data … … 2309 2318 self.lblChi2Value.setText(chi2_repr) 2310 2319 2311 self.communicate.plotUpdateSignal.emit([fitted_data])2320 # self.communicate.plotUpdateSignal.emit([fitted_data]) 2312 2321 2313 2322 # Plot residuals if actual data
Note: See TracChangeset
for help on using the changeset viewer.