Changeset 48e55c9 in sasview for src/sas/qtgui/Perspectives/Inversion
- Timestamp:
- Sep 9, 2018 5:27:05 AM (6 years ago)
- Branches:
- ESS_GUI, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc
- Children:
- 28965e9
- Parents:
- 4d959c8 (diff), bb477f5 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - Location:
- src/sas/qtgui/Perspectives/Inversion
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/Perspectives/Inversion/InversionPerspective.py
r4d959c8 r48e55c9 562 562 title = self.prPlot.name 563 563 GuiUtils.updateModelItemWithPlot(self._data, self.prPlot, title) 564 self.communicate.plotRequestedSignal.emit([self.prPlot] )564 self.communicate.plotRequestedSignal.emit([self.prPlot], None) 565 565 if self.dataPlot is not None: 566 566 title = self.dataPlot.name 567 567 GuiUtils.updateModelItemWithPlot(self._data, self.dataPlot, title) 568 self.communicate.plotRequestedSignal.emit([self.dataPlot] )568 self.communicate.plotRequestedSignal.emit([self.dataPlot], None) 569 569 self.enableButtons() 570 570 -
src/sas/qtgui/Perspectives/Inversion/DMaxExplorerWidget.py
rb0ba43e re908916 42 42 self.parent = parent 43 43 44 self.setWindowTitle("D ââExplorer")44 self.setWindowTitle("Dmax Explorer") 45 45 46 46 self.pr_state = pr_state … … 116 116 bck = [] 117 117 chi2 = [] 118 118 plotable_xs = [] #Introducing this to make sure size of x and y for plotting is the same.8 119 119 try: 120 120 dmin = float(self.model.item(W.DMIN).text()) … … 128 128 129 129 original = self.pr_state.d_max 130 130 131 for x in xs: 131 132 self.pr_state.d_max = x … … 140 141 bck.append(self.pr_state.background) 141 142 chi2.append(self.pr_state.chi2) 143 plotable_xs.append(x) 142 144 except Exception as ex: 143 145 # This inversion failed, skip this D_max value … … 188 190 y_unit = "a.u." 189 191 190 data = Data1D( xs, ys)192 data = Data1D(plotable_xs, ys) 191 193 if self.hasPlot: 192 194 self.plot.removePlot(None)
Note: See TracChangeset
for help on using the changeset viewer.