Changeset dce84c0 in sasview


Ignore:
Timestamp:
Mar 14, 2011 4:53:36 PM (13 years ago)
Author:
Gervaise Alina <gervyh@…>
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:
52d3fd1
Parents:
e6a93df
Message:

working on freeze

Location:
sansview/perspectives/fitting
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • sansview/perspectives/fitting/fitpage.py

    rb2d9826 rdce84c0  
    10711071        self.fitrange = True 
    10721072        #get event object 
    1073         tcrtl= event.GetEventObject() 
     1073        tcrtl = event.GetEventObject() 
     1074         
    10741075        wx.PostEvent(self._manager.parent, StatusEvent(status=" \ 
    10751076                                updating ... ",type="update")) 
  • sansview/perspectives/fitting/fitting.py

    re88ebfd rdce84c0  
    11191119        try: 
    11201120            new_plot = Data1D(x=x, y=y) 
     1121            new_plot.is_data = False 
    11211122            new_plot.symbol = GUIFRAME_ID.CURVE_SYMBOL_NUM 
    11221123            if data != None: 
     
    11401141                #find a group id to plot theory without data 
    11411142                new_plot.group_id =  str(id) + " Model1D"   
    1142                 new_plot.is_data = False  
    11431143            new_plot.id =  str(id) + " Model1D"   
    11441144             
     
    12351235            new_plot.xmin = data.xmin 
    12361236            new_plot.xmax = data.xmax 
     1237        new_plot.is_data = False 
    12371238        new_plot.name = model.name + " ["+ str(model.__class__.__name__)+ "]" 
    12381239        new_plot.title = "Analytical model 2D " 
  • sansview/perspectives/fitting/pagestate.py

    r5ef55d2 rdce84c0  
    161161        # model on which the fit would be performed 
    162162        self.model = model 
    163         
     163        #list of process done to model 
     164        self.process = [] 
    164165        #fit page manager  
    165166        self.manager = None 
Note: See TracChangeset for help on using the changeset viewer.