Changeset e87f9fc in sasview for theoryview
- Timestamp:
- Sep 17, 2010 3:13:37 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:
- 5d57267
- Parents:
- e096270
- Location:
- theoryview/perspectives/theory
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
theoryview/perspectives/theory/basepage.py
ra706353b re87f9fc 1467 1467 if form_factor != None: 1468 1468 # set multifactor for Mutifunctional models 1469 if form_factor(). name == 'CoreMultiShellModel':1469 if form_factor().__class__ in self.model_list_box["Multi-Functions"]: 1470 1470 self._show_multfactor_combobox() 1471 1471 m_id = self.multifactorbox.GetCurrentSelection() -
theoryview/perspectives/theory/models.py
r4523b68 re87f9fc 165 165 ##list of model allowing multiplication 166 166 multiplication_factor=[] 167 ##list of multifunctional shapes 168 multi_func_list =[] 167 169 ## list of added models 168 170 plugins=[] … … 182 184 self.shape_list.append(SphereModel) 183 185 self.multiplication_factor.append(SphereModel) 186 187 from sans.models.SphereExpShellModel import SphereExpShellModel 188 self.shape_list.append(SphereExpShellModel) 189 self.multiplication_factor.append(SphereExpShellModel) 190 self.multi_func_list.append(SphereExpShellModel) 184 191 185 192 from sans.models.FuzzySphereModel import FuzzySphereModel … … 194 201 self.shape_list.append(CoreMultiShellModel) 195 202 self.multiplication_factor.append(CoreMultiShellModel) 203 self.multi_func_list.append(CoreMultiShellModel) 196 204 197 205 from sans.models.VesicleModel import VesicleModel … … 337 345 self.model_combobox.set_list("P(Q)*S(Q)", self.multiplication_factor) 338 346 self.model_combobox.set_list("multiplication", self.multiplication_factor) 347 self.model_combobox.set_list("Multi-Functions", self.multi_func_list) 339 348 return self.model_combobox 340 349
Note: See TracChangeset
for help on using the changeset viewer.