Changeset 9053779 in sasview for sansguiframe/src
- Timestamp:
- Jun 16, 2012 10:53:51 AM (12 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:
- 79c8066
- Parents:
- 4a47244
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sansguiframe/src/sans/guiframe/dataFitting.py
rfdef956 r9053779 445 445 q_data=None, err_image=None, xmin=None, xmax=None, 446 446 ymin=None, ymax=None, zmin=None, zmax=None) 447 result.clone_without_data(len(self.data) , self)447 result.clone_without_data(len(self.data)) 448 448 result.copy_from_datainfo(data2d=self) 449 449 result.xmin = self.xmin … … 509 509 length = len(self.data) 510 510 tot_length = length + len(other.data) 511 result.clone_without_data(tot_length , self)511 result.clone_without_data(tot_length) 512 512 result.xmin = self.xmin 513 513 result.xmax = self.xmax
Note: See TracChangeset
for help on using the changeset viewer.