Changeset 1a395a6 in sasview for sansview/perspectives/fitting
- Timestamp:
- Nov 1, 2010 4:35:14 PM (14 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.1.1, release-4.1.2, release-4.2.2, release_4.0.1, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
- Children:
- 96c0234
- Parents:
- 96d19c6
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sansview/perspectives/fitting/models.py
rfb59ed9 r1a395a6 176 176 self.multiplication_factor.append(SphereModel) 177 177 178 from sans.models.SphereExpShellModel import SphereExpShellModel 179 self.shape_list.append(SphereExpShellModel) 180 self.multiplication_factor.append(SphereExpShellModel) 181 self.multi_func_list.append(SphereExpShellModel) 182 178 from sans.models.BinaryHSModel import BinaryHSModel 179 self.shape_list.append(BinaryHSModel) 180 183 181 from sans.models.FuzzySphereModel import FuzzySphereModel 184 182 self.shape_list.append(FuzzySphereModel) … … 202 200 self.multiplication_factor.append(MultiShellModel) 203 201 204 from sans.models.BinaryHSModel import BinaryHSModel 205 self.shape_list.append(BinaryHSModel) 202 from sans.models.OnionExpShellModel import OnionExpShellModel 203 self.shape_list.append(OnionExpShellModel) 204 self.multiplication_factor.append(OnionExpShellModel) 205 self.multi_func_list.append(OnionExpShellModel) 206 207 from sans.models.SphericalSLDModel import SphericalSLDModel 208 self.shape_list.append(SphericalSLDModel) 209 self.multiplication_factor.append(SphericalSLDModel) 210 self.multi_func_list.append(SphericalSLDModel) 206 211 207 212 from sans.models.CylinderModel import CylinderModel
Note: See TracChangeset
for help on using the changeset viewer.