Changeset 691e268 in sasview
- Timestamp:
- Mar 29, 2019 9:27:29 AM (6 years ago)
- Branches:
- ESS_GUI_bumps_abstraction
- Children:
- 09e651d
- Parents:
- f86343bd
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/Perspectives/Fitting/FittingOptions.py
rf86343bd r691e268 162 162 """ 163 163 super(FittingMethodsBumps, self).__init__() 164 ids = fitters.FIT_ACTIVE_IDS164 ids = [fid for fid in fitters.FIT_ACTIVE_IDS if fid != "mp"] # exclude unusable algos 165 165 for f in fitters.FITTERS: 166 166 if f.id not in ids: … … 220 220 # option 1: hardcode the list of bumps fitting methods according to forms 221 221 # option 2: create forms dynamically based on selected fitting methods 222 self.fittingMethods.add(FittingMethod('mcsas', 'McSAS', [])) # FIXME just testing for now222 # self.fittingMethods.add(FittingMethod('mcsas', 'McSAS', [])) # FIXME just testing for now 223 223 self.fittingMethods.setDefault('Levenberg-Marquardt') 224 224
Note: See TracChangeset
for help on using the changeset viewer.