Changeset ffdfd23 in sasview


Ignore:
Timestamp:
Jun 21, 2012 3:56:56 PM (12 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:
9e00363
Parents:
9bab141
Message:

added +- in fitdialog

Files:
2 edited

Legend:

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

    rfdef956 rffdfd23  
    21152115            # build residuals 
    21162116            residuals = Data1D() 
    2117             residuals.y = (fn - gn) / en 
     2117            try: 
     2118                residuals.y = (fn - gn) / en 
     2119            except: 
     2120                msg = "ResidualPlot Error: different # of data points in theory" 
     2121                wx.PostEvent(self.parent, StatusEvent(status=msg, info="error")) 
     2122                residuals.y = (fn - gn[index]) / en 
    21182123            residuals.x = data_copy.x[index] 
    21192124            residuals.dy = numpy.ones(len(residuals.y)) 
  • plottools/src/danse/common/plottools/fitDialog.py

    r9bab141 rffdfd23  
    187187                self.I0err_tctr.SetEditable(False) 
    188188                self.I0err_tctr.SetBackgroundColour(_BACKGROUND_COLOR) 
    189                 Rg_stxt = wx.StaticText(self, -1, 'Rg (A)') 
     189                Rg_stxt = wx.StaticText(self, -1, 'Rg [A]') 
    190190                Rg_stxt.Show(self.yLabel == "ln(y)" ) 
    191191                self.Rg_tctr = wx.TextCtrl(self, -1, '') 
     
    197197                self.Rgerr_tctr.SetBackgroundColour(_BACKGROUND_COLOR) 
    198198                self.Rgerr_tctr.Show(self.yLabel == "ln(y)" ) 
    199                 Diameter_stxt = wx.StaticText(self, -1, 'Rod Diameter (A)') 
     199                self.Rgerr_pm = wx.StaticText(self, -1, '+/-') 
     200                self.Rgerr_pm.Show(self.yLabel == "ln(y)" ) 
     201                Diameter_stxt = wx.StaticText(self, -1, 'Rod Diameter [A]') 
    200202                Diameter_stxt.Show(self.yLabel == "ln(y*x)") 
    201203                self.Diameter_tctr = wx.TextCtrl(self, -1, '') 
     
    203205                self.Diameter_tctr.SetBackgroundColour(_BACKGROUND_COLOR) 
    204206                self.Diameter_tctr.Show(self.yLabel == "ln(y*x)") 
     207                self.Diameter_pm = wx.StaticText(self, -1, '+/-') 
     208                self.Diameter_pm.Show(self.yLabel == "ln(y*x)") 
    205209                self.Diametererr_tctr = wx.TextCtrl(self, -1, '') 
    206210                self.Diametererr_tctr.SetEditable(False) 
     
    216220                self.RgQmax_tctr.SetBackgroundColour(_BACKGROUND_COLOR) 
    217221 
    218                 #sizer.Add(wx.StaticLine(self, -1), 0, wx.EXPAND, 0) 
    219222                iy += 2 
    220223                ix = 0 
    221                 sizer.Add(I0_stxt, (iy, ix),(1,1), 
     224                sizer.Add(I0_stxt, (iy, ix), (1,1), 
    222225                                        wx.LEFT|wx.EXPAND|wx.ADJUST_MINSIZE, 15) 
    223226                ix += 1 
    224227                sizer.Add(self.I0_tctr, (iy, ix), (1,1), 
    225228                                        wx.LEFT|wx.EXPAND|wx.ADJUST_MINSIZE, 0) 
    226          
    227                 ix += 2 
     229                ix += 1 
     230                sizer.Add(wx.StaticText(self, -1, '+/-'), (iy, ix), 
     231                                        (1, 1), wx.EXPAND|wx.ADJUST_MINSIZE, 0) 
     232                ix += 1 
    228233                sizer.Add(self.I0err_tctr, (iy, ix), (1,1),  
    229234                                        wx.EXPAND|wx.ADJUST_MINSIZE, 0) 
     
    237242                                        wx.LEFT|wx.EXPAND|wx.ADJUST_MINSIZE, 0) 
    238243         
    239                 ix += 2 
     244                ix += 1 
     245                sizer.Add(self.Rgerr_pm, (iy, ix), 
     246                                        (1, 1), wx.EXPAND|wx.ADJUST_MINSIZE, 0) 
     247                ix += 1 
    240248                sizer.Add(self.Rgerr_tctr, (iy, ix), (1,1),  
    241249                                        wx.EXPAND|wx.ADJUST_MINSIZE, 0) 
     
    248256                                        wx.LEFT|wx.EXPAND|wx.ADJUST_MINSIZE, 0) 
    249257         
    250                 ix += 2 
     258                ix += 1 
     259                sizer.Add(self.Diameter_pm, (iy, ix), 
     260                                        (1, 1), wx.EXPAND|wx.ADJUST_MINSIZE, 0) 
     261                ix += 1 
    251262                sizer.Add(self.Diametererr_tctr, (iy, ix), (1,1),  
    252263                                        wx.EXPAND|wx.ADJUST_MINSIZE, 0) 
Note: See TracChangeset for help on using the changeset viewer.