Changeset 2f189dc in sasview for sansview/perspectives/fitting/fitproblem.py
- Timestamp:
- Mar 26, 2010 2:41:45 PM (15 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:
- 509af3d
- Parents:
- da87bce
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sansview/perspectives/fitting/fitproblem.py
r7c845cb r2f189dc 16 16 ## the current model 17 17 self.model = None 18 self.model_index = None 18 19 ## if 1 this fit problem will be selected to fit , if 0 19 20 ## it will not be selected for fit … … 85 86 return self.model 86 87 87 88 def set_index(self, index): 89 """ 90 set index of the model name 91 """ 92 self.model_index = index 93 94 def get_index(self): 95 """ 96 get index of the model name 97 """ 98 return self.model_index 99 88 100 def add_plotted_data(self,data): 89 101 """
Note: See TracChangeset
for help on using the changeset viewer.