Changeset a2da783 in sasview for fittingview/src/sans
- Timestamp:
- Sep 14, 2011 1:53:27 PM (13 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:
- 8e671c39
- Parents:
- 14ecd871
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
fittingview/src/sans/perspectives/fitting/fitting.py
r14ecd871 ra2da783 1532 1532 # But this should be corrected later. 1533 1533 dy = deepcopy(data_copy.dy) 1534 dy[dy==0] = 11534 dy[dy==0] = numpy.ones(len(dy[dy==0])) 1535 1535 fn = data_copy.y[index] 1536 1536 theory_data = self.page_finder[page_id].get_theory_data(fid=data_copy.id) … … 1612 1612 new_plot.interactive = True 1613 1613 ## when 2 data have the same id override the 1 st plotted 1614 new_plot.id = "res" + data_copy.id#name + " residuals"1614 new_plot.id = "res" + str(data_copy.id)#name + " residuals" 1615 1615 ##group_id specify on which panel to plot this data 1616 1616 new_plot.group_id = new_plot.id
Note: See TracChangeset
for help on using the changeset viewer.