Changeset e191da5 in sasview for sansview/perspectives


Ignore:
Timestamp:
Feb 5, 2009 4:41:36 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:
4af20b4
Parents:
27561b6
Message:

Add 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/fitpage1D.py

    r8d93ec4 re191da5  
    395395            self.manager.schedule_for_fit( value=1,fitproblem =None)  
    396396            if hasattr(self.data, "data"): 
    397                 self.manager._on_single_fit(qmin=self.qmin_x,qmax=self.qmax_x, 
    398                                             ymin=self.data.ymin, ymax=self.data.ymax) 
     397                self.manager._on_single_fit( qmin=self.qmin_x,qmax=self.qmax_x, 
     398                                            ymin=self.data.ymin, ymax=self.data.ymax, 
     399                                            xmin=self.data.xmin,xmax=self.data.xmax) 
     400                #self.manager._on_single_fit(qmin=self.qmin_x,qmax=self.qmax_x, 
     401                                            #ymin=self.data.ymin, ymax=self.data.ymax) 
    399402            else: 
    400403                 self.manager._on_single_fit(qmin=self.qmin_x,qmax=self.qmax_x) 
Note: See TracChangeset for help on using the changeset viewer.