Changeset 3b3b40b in sasview for src/sas/qtgui/Perspectives/Fitting/FittingWidget.py
- Timestamp:
- Mar 21, 2018 2:17:04 AM (7 years ago)
- Branches:
- 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
- Children:
- 8b480d27
- Parents:
- e4c475b7
- git-author:
- Piotr Rozyczko <rozyczko@…> (02/08/18 02:19:04)
- git-committer:
- Piotr Rozyczko <rozyczko@…> (03/21/18 02:17:04)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/Perspectives/Fitting/FittingWidget.py
re4c475b7 r3b3b40b 24 24 import sas.qtgui.Utilities.GuiUtils as GuiUtils 25 25 import sas.qtgui.Utilities.LocalConfig as LocalConfig 26 from sas.qtgui.Utilities.GridPanel import BatchOutputPanel 26 27 from sas.qtgui.Utilities.CategoryInstaller import CategoryInstaller 27 28 from sas.qtgui.Plotting.PlotterData import Data1D … … 36 37 from sas.qtgui.Perspectives.Fitting.FittingLogic import FittingLogic 37 38 from sas.qtgui.Perspectives.Fitting import FittingUtilities 39 from sas.qtgui.Perspectives.Fitting import ModelUtilities 38 40 from sas.qtgui.Perspectives.Fitting.SmearingWidget import SmearingWidget 39 41 from sas.qtgui.Perspectives.Fitting.OptionsWidget import OptionsWidget … … 50 52 CATEGORY_DEFAULT = "Choose category..." 51 53 CATEGORY_STRUCTURE = "Structure Factor" 54 CATEGORY_CUSTOM = "Plugin Models" 52 55 STRUCTURE_DEFAULT = "None" 53 56 … … 83 86 constraintAddedSignal = QtCore.pyqtSignal(list) 84 87 newModelSignal = QtCore.pyqtSignal() 88 fittingFinishedSignal = QtCore.pyqtSignal(tuple) 89 batchFittingFinishedSignal = QtCore.pyqtSignal(tuple) 90 85 91 def __init__(self, parent=None, data=None, tab_id=1): 86 92 … … 211 217 self.page_stack = [] 212 218 self.all_data = [] 219 # custom plugin models 220 # {model.name:model} 221 self.custom_models = self.customModels() 213 222 # Polydisp widget table default index for function combobox 214 223 self.orig_poly_index = 3 … … 415 424 self.onSelectModel() 416 425 426 def customModels(self): 427 """ Reads in file names in the custom plugin directory """ 428 return ModelUtilities._find_models() 429 417 430 def initializeControls(self): 418 431 """ … … 465 478 self._poly_model.itemChanged.connect(self.onPolyModelChange) 466 479 self._magnet_model.itemChanged.connect(self.onMagnetModelChange) 480 self.lstParams.selectionModel().selectionChanged.connect(self.onSelectionChanged) 481 482 # Local signals 483 self.batchFittingFinishedSignal.connect(self.batchFitComplete) 484 self.fittingFinishedSignal.connect(self.fitComplete) 467 485 468 486 # Signals from separate tabs asking for replot 469 487 self.options_widget.plot_signal.connect(self.onOptionsUpdate) 488 489 # Signals from other widgets 490 self.communicate.customModelDirectoryChanged.connect(self.onCustomModelChange) 470 491 471 492 def modelName(self): … … 576 597 # widget.params[0] is the parameter we're constraining 577 598 constraint.param = mc_widget.params[0] 578 # Functionshould have the model name preamble599 # parameter should have the model name preamble 579 600 model_name = self.kernel_module.name 580 constraint.func = model_name + "." + c_text 601 # param_used is the parameter we're using in constraining function 602 param_used = mc_widget.params[1] 603 # Replace param_used with model_name.param_used 604 updated_param_used = model_name + "." + param_used 605 new_func = c_text.replace(param_used, updated_param_used) 606 constraint.func = new_func 581 607 # Which row is the constrained parameter in? 582 608 row = self.getRowFromName(constraint.param) … … 677 703 Delete constraints from selected parameters. 678 704 """ 679 self.deleteConstraintOnParameter(param=None) 705 params = [s.data() for s in self.lstParams.selectionModel().selectedRows() 706 if self.isCheckable(s.row())] 707 for param in params: 708 self.deleteConstraintOnParameter(param=param) 680 709 681 710 def deleteConstraintOnParameter(self, param=None): … … 686 715 max_col = self.lstParams.itemDelegate().param_max 687 716 for row in range(self._model_model.rowCount()): 717 if not self.rowHasConstraint(row): 718 continue 688 719 # Get the Constraint object from of the model item 689 720 item = self._model_model.item(row, 1) 690 if not item.hasChildren(): 691 continue 692 constraint = item.child(0).data() 721 constraint = self.getConstraintForRow(row) 693 722 if constraint is None: 694 723 continue … … 816 845 return constraints 817 846 847 def getConstraintsForFitting(self): 848 """ 849 Return a list of constraints in format ready for use in fiting 850 """ 851 # Get constraints 852 constraints = self.getComplexConstraintsForModel() 853 # See if there are any constraints across models 854 multi_constraints = [cons for cons in constraints if self.isConstraintMultimodel(cons[1])] 855 856 if multi_constraints: 857 # Let users choose what to do 858 msg = "The current fit contains constraints relying on other fit pages.\n" 859 msg += "Parameters with those constraints are:\n" +\ 860 '\n'.join([cons[0] for cons in multi_constraints]) 861 msg += "\n\nWould you like to remove these constraints or cancel fitting?" 862 msgbox = QtWidgets.QMessageBox(self) 863 msgbox.setIcon(QtWidgets.QMessageBox.Warning) 864 msgbox.setText(msg) 865 msgbox.setWindowTitle("Existing Constraints") 866 # custom buttons 867 button_remove = QtWidgets.QPushButton("Remove") 868 msgbox.addButton(button_remove, QtWidgets.QMessageBox.YesRole) 869 button_cancel = QtWidgets.QPushButton("Cancel") 870 msgbox.addButton(button_cancel, QtWidgets.QMessageBox.RejectRole) 871 retval = msgbox.exec_() 872 if retval == QtWidgets.QMessageBox.RejectRole: 873 # cancel fit 874 raise ValueError("Fitting cancelled") 875 else: 876 # remove constraint 877 for cons in multi_constraints: 878 self.deleteConstraintOnParameter(param=cons[0]) 879 # re-read the constraints 880 constraints = self.getComplexConstraintsForModel() 881 882 return constraints 883 818 884 def showModelDescription(self): 819 885 """ … … 874 940 self.respondToModelStructure(model=model, structure_factor=structure) 875 941 942 def onCustomModelChange(self): 943 """ 944 Reload the custom model combobox 945 """ 946 self.custom_models = self.customModels() 947 self.readCustomCategoryInfo() 948 # See if we need to update the combo in-place 949 if self.cbCategory.currentText() != CATEGORY_CUSTOM: return 950 951 current_text = self.cbModel.currentText() 952 self.cbModel.blockSignals(True) 953 self.cbModel.clear() 954 self.cbModel.blockSignals(False) 955 self.enableModelCombo() 956 self.disableStructureCombo() 957 # Retrieve the list of models 958 model_list = self.master_category_dict[CATEGORY_CUSTOM] 959 # Populate the models combobox 960 self.cbModel.addItems(sorted([model for (model, _) in model_list])) 961 new_index = self.cbModel.findText(current_text) 962 if new_index != -1: 963 self.cbModel.setCurrentIndex(self.cbModel.findText(current_text)) 964 965 def onSelectionChanged(self): 966 """ 967 React to parameter selection 968 """ 969 rows = self.lstParams.selectionModel().selectedRows() 970 # Clean previous messages 971 self.communicate.statusBarUpdateSignal.emit("") 972 if len(rows) == 1: 973 # Show constraint, if present 974 row = rows[0].row() 975 if self.rowHasConstraint(row): 976 func = self.getConstraintForRow(row).func 977 if func is not None: 978 self.communicate.statusBarUpdateSignal.emit("Active constrain: "+func) 979 876 980 def replaceConstraintName(self, old_name, new_name=""): 877 981 """ … … 886 990 new_func = func.replace(old_name, new_name) 887 991 self._model_model.item(row, 1).child(0).data().func = new_func 992 993 def isConstraintMultimodel(self, constraint): 994 """ 995 Check if the constraint function text contains current model name 996 """ 997 current_model_name = self.kernel_module.name 998 if current_model_name in constraint: 999 return False 1000 else: 1001 return True 888 1002 889 1003 def updateData(self): … … 937 1051 self._model_model.clear() 938 1052 return 939 1053 940 1054 # Safely clear and enable the model combo 941 1055 self.cbModel.blockSignals(True) … … 1105 1219 except ValueError as ex: 1106 1220 # This should not happen! GUI explicitly forbids this situation 1107 self.communicate.statusBarUpdateSignal.emit( 'Fitting attempt without parameters.')1221 self.communicate.statusBarUpdateSignal.emit(str(ex)) 1108 1222 return 1109 1223 1110 1224 # Create the fitting thread, based on the fitter 1111 completefn = self.batchFit Complete if self.is_batch_fitting else self.fitComplete1225 completefn = self.batchFittingCompleted if self.is_batch_fitting else self.fittingCompleted 1112 1226 1113 1227 calc_fit = FitThread(handler=handler, … … 1146 1260 pass 1147 1261 1262 def batchFittingCompleted(self, result): 1263 """ 1264 Send the finish message from calculate threads to main thread 1265 """ 1266 self.batchFittingFinishedSignal.emit(result) 1267 1148 1268 def batchFitComplete(self, result): 1149 1269 """ … … 1152 1272 #re-enable the Fit button 1153 1273 self.setFittingStopped() 1274 # Show the grid panel 1275 self.grid_window = BatchOutputPanel(parent=self, output_data=result[0]) 1276 self.grid_window.show() 1277 1278 def fittingCompleted(self, result): 1279 """ 1280 Send the finish message from calculate threads to main thread 1281 """ 1282 self.fittingFinishedSignal.emit(result) 1154 1283 1155 1284 def fitComplete(self, result): … … 1162 1291 1163 1292 if result is None: 1164 msg = "Fitting failed after: %s s.\n" % GuiUtils.formatNumber(elapsed)1293 msg = "Fitting failed." 1165 1294 self.communicate.statusBarUpdateSignal.emit(msg) 1166 1295 return … … 1228 1357 smearing, accuracy, smearing_min, smearing_max = self.smearing_widget.state() 1229 1358 1230 constraints = self.getComplexConstraintsForModel() 1359 constraints = self.getConstraintsForFitting() 1360 1231 1361 smearer = None 1232 1362 handler = None … … 1242 1372 constraints=constraints) 1243 1373 except ValueError as ex: 1244 logging.error("Setting model parameters failed with: %s" % ex) 1245 return 1374 raise ValueError("Setting model parameters failed with: %s" % ex) 1246 1375 1247 1376 qmin, qmax, _ = self.logic.computeRangeFromData(data) … … 1409 1538 if not dict: 1410 1539 return 1411 if self._m odel_model.rowCount() == 0:1540 if self._magnet_model.rowCount() == 0: 1412 1541 return 1413 1542 … … 1555 1684 self.models[model.name] = model 1556 1685 1686 self.readCustomCategoryInfo() 1687 1688 def readCustomCategoryInfo(self): 1689 """ 1690 Reads the custom model category 1691 """ 1692 #Looking for plugins 1693 self.plugins = list(self.custom_models.values()) 1694 plugin_list = [] 1695 for name, plug in self.custom_models.items(): 1696 self.models[name] = plug 1697 plugin_list.append([name, True]) 1698 self.master_category_dict[CATEGORY_CUSTOM] = plugin_list 1699 1557 1700 def regenerateModelDict(self): 1558 1701 """ … … 1662 1805 Setting model parameters into QStandardItemModel based on selected _model_ 1663 1806 """ 1664 kernel_module = generate.load_kernel_module(model_name) 1807 name = model_name 1808 if self.cbCategory.currentText() == CATEGORY_CUSTOM: 1809 # custom kernel load requires full path 1810 name = os.path.join(ModelUtilities.find_plugins_dir(), model_name+".py") 1811 kernel_module = generate.load_kernel_module(name) 1665 1812 self.model_parameters = modelinfo.make_parameter_table(getattr(kernel_module, 'parameters', [])) 1666 1813
Note: See TracChangeset
for help on using the changeset viewer.