Changeset 27561b6 in sasview for sansview/perspectives


Ignore:
Timestamp:
Feb 5, 2009 4:41:19 PM (15 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:
e191da5
Parents:
8d93ec4
Message:

Added xmax and xmin to 2d fit function in addition to qmax and qmin for 2d fitting range.

File:
1 edited

Legend:

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

    r26bf293 r27561b6  
    110110     
    111111    def __init__(self,parent, fn,pars=None,cpage=None, qmin=None,qmax=None,ymin=None, ymax=None, 
     112                 xmin=None,xmax=None, 
    112113                 completefn = None, 
    113114                 updatefn   = None, 
     
    126127        self.qmin = qmin 
    127128        self.qmax = qmax 
     129        self.xmin = xmin 
     130        self.xmax = xmax 
    128131        self.ymin = ymin 
    129132        self.ymax = ymax 
     
    161164                          qmin = self.qmin, 
    162165                          qmax = self.qmax, 
     166                          xmin= self.xmin, 
     167                          xmax= self.xmax, 
    163168                          ymin = self.ymin, 
    164169                          ymax = self.ymax,  
Note: See TracChangeset for help on using the changeset viewer.