Changeset c647377 in sasview


Ignore:
Timestamp:
Aug 26, 2011 10:22:36 AM (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:
ad3fa1e
Parents:
7e7e806
Message:

modify simpage according to the new page finder

File:
1 edited

Legend:

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

    r49c69de rc647377  
    137137        if self.show_constraint.GetValue(): 
    138138            self._set_constraint() 
    139         ## get the fit range of very fit problem         
    140         for id, value in self.page_finder.iteritems(): 
    141             qmin, qmax= self.page_finder[id].get_range() 
    142             value.set_range(qmin, qmax) 
    143139        ## model was actually selected from this page to be fit 
    144140        if len(self.model_toFit) >= 1 : 
     
    146142            for item in self.model_list: 
    147143                if item[0].GetValue(): 
    148                     self.manager.schedule_for_fit( value=1, fitproblem =item[1])  
     144                    self.manager.schedule_for_fit(value=1, uid=item[2])  
    149145            self.manager.onFit(None) 
    150146        else: 
    151147            msg= "Select at least one model to fit " 
    152             wx.PostEvent(self.parent.Parent, StatusEvent(status= msg )) 
     148            wx.PostEvent(self.parent.Parent, StatusEvent(status=msg)) 
    153149            
    154150    def set_manager(self, manager): 
     
    227223            for item in self.model_list: 
    228224                item[0].SetValue(False)  
    229                 self.manager.schedule_for_fit( value=0,fitproblem =item[1]) 
     225                self.manager.schedule_for_fit(value=0, uid=item[2]) 
    230226                 
    231227        self.sizer1.Clear(True)     
     
    551547                        wx.PostEvent(self.parent.Parent, StatusEvent(status= msg )) 
    552548                        constraint = None 
    553                     self.page_finder[id].set_model_param(param,constraint) 
     549                    for fid in self.page_finder[id].iterkeys(): 
     550                        self.page_finder[id].set_model_param(param, 
     551                                                        constraint, fid=fid) 
    554552                    break 
    555553     
     
    589587                ix = 0 
    590588                iy += 1  
    591                 model = value.get_model() 
    592                 name = '_' 
    593                 if model is not None: 
    594                     name = str(model.name) 
    595                 cb = wx.CheckBox(self, -1, name) 
    596                 cb.SetValue(False) 
    597                 cb.Enable(model is not None) 
    598                 sizer.Add( cb,( iy,ix),(1,1),  wx.LEFT|wx.EXPAND|wx.ADJUST_MINSIZE, 15) 
    599                 wx.EVT_CHECKBOX(self, cb.GetId(), self.check_model_name) 
    600                 ix += 2  
    601                 type = model.__class__.__name__ 
    602                 model_type = wx.StaticText(self, -1, str(type)) 
    603                 sizer.Add(model_type,( iy,ix),(1,1),  wx.EXPAND|wx.ADJUST_MINSIZE, 0) 
    604                 data = value.get_fit_data() 
    605                 name = '-' 
    606                 if data is not None: 
    607                     name = str(data.name) 
    608                 data_used = wx.StaticText(self, -1, name) 
    609                 ix += 1  
    610                 sizer.Add(data_used,( iy,ix),(1,1),  wx.EXPAND|wx.ADJUST_MINSIZE, 0) 
     589                for fitproblem in value.get_fit_problem(): 
     590                    model = fitproblem.get_model() 
     591                    name = '_' 
     592                    if model is not None: 
     593                        name = str(model.name) 
     594                    cb = wx.CheckBox(self, -1, name) 
     595                    cb.SetValue(False) 
     596                    cb.Enable(model is not None) 
     597                    sizer.Add(cb, (iy, ix), (1, 1),  
     598                               wx.LEFT|wx.EXPAND|wx.ADJUST_MINSIZE, 15) 
     599                    wx.EVT_CHECKBOX(self, cb.GetId(), self.check_model_name) 
     600                    ix += 2  
     601                    type = model.__class__.__name__ 
     602                    model_type = wx.StaticText(self, -1, str(type)) 
     603                    sizer.Add(model_type, (iy, ix), (1, 1),  
     604                              wx.EXPAND|wx.ADJUST_MINSIZE, 0) 
     605                    data = fitproblem.get_fit_data() 
     606                    name = '-' 
     607                    if data is not None: 
     608                        name = str(data.name) 
     609                    data_used = wx.StaticText(self, -1, name) 
     610                    ix += 1  
     611                    sizer.Add(data_used, (iy, ix), (1, 1),  
     612                              wx.EXPAND|wx.ADJUST_MINSIZE, 0) 
     613                    ix += 1  
     614                    caption = value.get_fit_tab_caption() 
     615                    tab_caption_used= wx.StaticText(self, -1, str(caption)) 
     616                    sizer.Add(tab_caption_used, (iy, ix), (1, 1),  
     617                              wx.EXPAND|wx.ADJUST_MINSIZE, 0) 
    611618                     
    612                 ix += 1  
    613                 caption = value.get_fit_tab_caption() 
    614                 tab_caption_used= wx.StaticText(self, -1, str(caption)) 
    615                 sizer.Add(tab_caption_used,( iy,ix),(1,1),  wx.EXPAND|wx.ADJUST_MINSIZE, 0) 
    616                  
    617619                self.model_list.append([cb,value,id,model]) 
    618620                 
     
    621623                #pass 
    622624        iy += 1 
    623         sizer.Add((20,20),( iy,ix),(1,1),  wx.LEFT|wx.EXPAND|wx.ADJUST_MINSIZE, 15) 
     625        sizer.Add((20, 20), (iy, ix), (1, 1),  
     626                  wx.LEFT|wx.EXPAND|wx.ADJUST_MINSIZE, 15) 
    624627        sizer.Layout()     
     628 
Note: See TracChangeset for help on using the changeset viewer.