Changeset ac7be54 in sasview for src/sas/perspectives
- Timestamp:
- May 8, 2015 2:27:08 PM (10 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:
- 5e880fe1
- Parents:
- c22c5e3
- Location:
- src/sas/perspectives
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/perspectives/calculator/data_editor.py
r49ab5d7 rac7be54 53 53 """ 54 54 :param data: when not empty the class can 55 55 same information into a dat object 56 56 and post event containing the changed data object to some other frame 57 57 """ -
src/sas/perspectives/calculator/model_editor.py
r2d50115 rac7be54 89 89 will create a file that cannot be compiled. Should add the check to 90 90 the write method or to the on_modelx method. 91 - PDB:April 5, 2015 91 92 - PDB:April 5, 2015 92 93 """ 93 94 def __init__(self, parent=None, base=None, id=None, title='', -
src/sas/perspectives/fitting/fitpanel.py
racf8e4a5 rac7be54 298 298 299 299 :param m_dict: dictionnary made of model name as key and model class 300 as value300 as value 301 301 """ 302 302 self.model_list_box = dict -
src/sas/perspectives/fitting/fitproblem.py
r2f4b430 rac7be54 25 25 """ 26 26 :param flag: bool.When flag is 1 get the computer smear value. When 27 flag is 0 ingore smear value.27 flag is 0 ingore smear value. 28 28 """ 29 29 … … 76 76 def set_fit_data(self, data): 77 77 """ 78 79 id, if there was existing information about model, this information80 78 Store of list of data and create by create new fitproblem of each data 79 id, if there was existing information about model, this information 80 get copy to the new fitproblem 81 81 :param data: list of data selected 82 82 """ … … 202 202 """ 203 203 :param flag: bool.When flag is 1 get the computer smear value. When 204 flag is 0 ingore smear value.204 flag is 0 ingore smear value. 205 205 """ 206 206 self._smear_on = flag … … 346 346 """ 347 347 return data for the given fitproblem id 348 :param fid: is key representing a fitproblem. usually extract from data 349 id 348 :param fid: key representing a fitproblem, usually extract from data id 350 349 """ 351 350 if fid in self.iterkeys(): … … 531 530 """ 532 531 :param flag: bool.When flag is 1 get the computer smear value. When 533 flag is 0 ingore smear value.532 flag is 0 ingore smear value. 534 533 """ 535 534 self.smearer_enable = flag
Note: See TracChangeset
for help on using the changeset viewer.