Ignore:
Timestamp:
Mar 20, 2009 8:26:01 PM (15 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:
20d30e9
Parents:
f2776f6
Message:

new interface design —→ proposition

File:
1 edited

Legend:

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

    rbb18ef1 rc77d859  
    102102    """Thread performing the fit """ 
    103103     
    104     def __init__(self,parent, fn,pars=None,cpage=None, qmin=None,qmax=None,ymin=None, ymax=None, 
    105                  xmin=None,xmax=None, 
     104    def __init__(self,parent, fn,pars=None,cpage=None, qmin=None,qmax=None, 
    106105                 completefn = None, 
    107106                 updatefn   = None, 
     
    118117        self.pars = pars 
    119118        self.starttime = 0 
     119         
    120120        self.qmin = qmin 
    121121        self.qmax = qmax 
    122         self.xmin = xmin 
    123         self.xmax = xmax 
    124         self.ymin = ymin 
    125         self.ymax = ymax 
     122        
    126123        self.done= False 
    127124        wx.PostEvent(self.parent, StatusEvent(status=\ 
     
    165162                          qmin = self.qmin, 
    166163                          qmax = self.qmax, 
    167                           xmin= self.xmin, 
    168                           xmax= self.xmax, 
    169                           ymin = self.ymin, 
    170                           ymax = self.ymax,  
     164                           
    171165                          elapsed=elapsed ) 
    172166        except KeyboardInterrupt: 
Note: See TracChangeset for help on using the changeset viewer.