Changeset 743f480 in sasview for fittingview/src/sans


Ignore:
Timestamp:
Jun 26, 2012 1:35:21 PM (12 years ago)
Author:
Jae Cho <jhjcho@…>
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
Message:

read theory too.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • fittingview/src/sans/perspectives/fitting/fitting.py

    rffdfd23 r743f480  
    18531853        numpy.nan_to_num(image) 
    18541854        new_plot = Data2D(image=image, err_image=data.err_data) 
    1855         new_plot.name = model.name 
     1855        new_plot.name = model.name + '2d' 
    18561856        new_plot.title = "Analytical model 2D " 
    18571857        new_plot.id = str(page_id) + "model-" + data.name 
     
    18751875            data_name = str(data.name) 
    18761876        else: 
    1877             data_name = str(model.__class__.__name__) 
     1877            data_name = str(model.__class__.__name__) + '2d' 
    18781878 
    18791879        if len(title) > 1: 
Note: See TracChangeset for help on using the changeset viewer.