Changeset a2da783 in sasview for fittingview/src


Ignore:
Timestamp:
Sep 14, 2011 1:53:27 PM (13 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:
8e671c39
Parents:
14ecd871
Message:

resid id is now str id

File:
1 edited

Legend:

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

    r14ecd871 ra2da783  
    15321532                # But this should be corrected later. 
    15331533                dy = deepcopy(data_copy.dy) 
    1534                 dy[dy==0] = 1   
     1534                dy[dy==0] = numpy.ones(len(dy[dy==0]))   
    15351535            fn = data_copy.y[index]  
    15361536            theory_data = self.page_finder[page_id].get_theory_data(fid=data_copy.id) 
     
    16121612        new_plot.interactive = True 
    16131613        ## 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" 
    16151615        ##group_id specify on which panel to plot this data 
    16161616        new_plot.group_id = new_plot.id 
Note: See TracChangeset for help on using the changeset viewer.