Changeset 489f53a in sasview
- Timestamp:
- Aug 7, 2017 6:39:28 AM (7 years ago)
- Branches:
- master, ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc, costrafo411, magnetic_scatt, release-4.2.2, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
- Children:
- 4627657
- Parents:
- b1c2011
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/sasgui/perspectives/fitting/fitting.py
ra534432 r489f53a 257 257 toks = os.path.splitext(label) 258 258 path = os.path.join(models.find_plugins_dir(), toks[0]) 259 message = "Are you sure you want to delete the file {}?".format(path) 260 dlg = wx.MessageDialog(self.frame, message, '', wx.YES_NO | wx.ICON_QUESTION) 261 if not dlg.ShowModal() == wx.ID_YES: 262 return 259 263 try: 260 264 for ext in ['.py', '.pyc']: 261 265 p_path = path + ext 266 if ext == '.pyc' and not os.path.isfile(path + ext): 267 # If model is invalid, .pyc file may not exist as model has 268 # never been compiled. Don't try and delete it 269 continue 262 270 os.remove(p_path) 263 271 self.update_custom_combo() … … 361 369 'Add a new model function') 362 370 wx.EVT_MENU(owner, wx_id, self.make_new_model) 363 371 364 372 wx_id = wx.NewId() 365 373 self.edit_model_menu.Append(wx_id, 'Sum|Multi(p1, p2)', … … 383 391 '(Re)Load all models present in user plugin_models folder') 384 392 wx.EVT_MENU(owner, wx_id, self.load_plugin_models) 385 393 386 394 def set_edit_menu_helper(self, owner=None, menu=None): 387 395 """ … … 1734 1742 @param unsmeared_error: data error, rescaled to unsmeared model 1735 1743 """ 1736 1737 number_finite = np.count_nonzero(np.isfinite(y)) 1744 1745 number_finite = np.count_nonzero(np.isfinite(y)) 1738 1746 np.nan_to_num(y) 1739 1747 new_plot = self.create_theory_1D(x, y, page_id, model, data, state, … … 1794 1802 msg = "Computing Error: Model did not return any finite value." 1795 1803 wx.PostEvent(self.parent, StatusEvent(status = msg, info="error")) 1796 else: 1804 else: 1797 1805 msg = "Computation completed!" 1798 1806 if number_finite != y.size: … … 1824 1832 that can be plot. 1825 1833 """ 1826 number_finite = np.count_nonzero(np.isfinite(image)) 1834 number_finite = np.count_nonzero(np.isfinite(image)) 1827 1835 np.nan_to_num(image) 1828 1836 new_plot = Data2D(image=image, err_image=data.err_data) … … 1927 1935 ## and may be the cause of other noted instabilities 1928 1936 ## 1929 ## -PDB August 12, 2014 1937 ## -PDB August 12, 2014 1930 1938 while self.calc_2D.isrunning(): 1931 1939 time.sleep(0.1) … … 1969 1977 if (self.calc_1D is not None) and self.calc_1D.isrunning(): 1970 1978 self.calc_1D.stop() 1971 ## stop just raises the flag -- the thread is supposed to 1979 ## stop just raises the flag -- the thread is supposed to 1972 1980 ## then kill itself but cannot. Paul Kienzle came up with 1973 1981 ## this fix to prevent threads from stepping on each other … … 1981 1989 ## a request to stop the computation. 1982 1990 ## It seems thus that the whole thread approach used here 1983 ## May need rethinking 1991 ## May need rethinking 1984 1992 ## 1985 1993 ## -PDB August 12, 2014 … … 2146 2154 residuals.dxw = None 2147 2155 residuals.ytransform = 'y' 2148 # For latter scale changes 2156 # For latter scale changes 2149 2157 residuals.xaxis('\\rm{Q} ', 'A^{-1}') 2150 2158 residuals.yaxis('\\rm{Residuals} ', 'normalized')
Note: See TracChangeset
for help on using the changeset viewer.