Changeset 743f480 in sasview for fittingview/src
- Timestamp:
- Jun 26, 2012 11:35:21 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:
- 709cd83
- Parents:
- 21bc81b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
fittingview/src/sans/perspectives/fitting/fitting.py
rffdfd23 r743f480 1853 1853 numpy.nan_to_num(image) 1854 1854 new_plot = Data2D(image=image, err_image=data.err_data) 1855 new_plot.name = model.name 1855 new_plot.name = model.name + '2d' 1856 1856 new_plot.title = "Analytical model 2D " 1857 1857 new_plot.id = str(page_id) + "model-" + data.name … … 1875 1875 data_name = str(data.name) 1876 1876 else: 1877 data_name = str(model.__class__.__name__) 1877 data_name = str(model.__class__.__name__) + '2d' 1878 1878 1879 1879 if len(title) > 1:
Note: See TracChangeset
for help on using the changeset viewer.