Changeset 052a66bc in sasview


Ignore:
Timestamp:
May 30, 2008 2:14:48 PM (16 years ago)
Author:
Mathieu Doucet <doucetm@…>
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:
be0ea2a
Parents:
6a8adb0
Message:

Bug fixing

Location:
guitools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • guitools/PlotPanel.py

    rb6972a0f r052a66bc  
    3434        @param unit: the unit of the data 
    3535    """  
     36    return unit 
    3637    toks=re.match("^", unit) 
    3738    if not toks==None: 
     
    136137        #User scale 
    137138        self.xLabel ="x" 
    138         self.yLabel ="log10(y)" 
     139        self.yLabel ="y" 
    139140        self.viewModel ="--" 
    140141        # keep track if the previous transformation of x and y in Property dialog 
    141         self.prevXtrans =" " 
    142         self.prevYtrans =" " 
     142        self.prevXtrans ="x" 
     143        self.prevYtrans ="y" 
    143144        self.canvas.mpl_connect('scroll_event',self.onWheel) 
    144145        self.axes = [self.subplot] 
     
    157158        self.ErrBvalue=None 
    158159        self.Chivalue=None 
     160         
    159161    def resetFitView(self): 
    160162        """ 
     
    248250            dlg.ShowModal()  
    249251 
     252    def linear_plottable_fit(self, plot):  
     253        """ 
     254            when clicking on linear Fit on context menu , display Fitting Dialog 
     255        """ 
     256        from fitDialog import LinearFit 
     257         
     258        dlg = LinearFit( None, plot, self.onFitDisplay,self.returnTrans, -1, 'Linear Fit') 
     259        
     260        if (self.xmin !=0.0 )and ( self.xmax !=0.0)\ 
     261            and(self.xminView !=0.0 )and ( self.xmaxView !=0.0): 
     262            dlg.setFitRange(self.xminView,self.xmaxView,self.xmin,self.xmax) 
     263        dlg.ShowModal()  
     264 
    250265    def _onProperties(self, event): 
    251266        """ 
     
    356371        """ 
    357372        # Slicer plot popup menu 
     373        id = wx.NewId() 
    358374        slicerpop = wx.Menu() 
    359         slicerpop.Append(313,'&Save image', 'Save image as PNG') 
    360         wx.EVT_MENU(self, 313, self.onSaveImage) 
    361          
    362         slicerpop.Append(316, '&Load 1D data file') 
    363         wx.EVT_MENU(self, 316, self._onLoad1DData) 
     375        slicerpop.Append(id,'&Save image', 'Save image as PNG') 
     376        wx.EVT_MENU(self, id, self.onSaveImage) 
     377         
     378        id = wx.NewId() 
     379        slicerpop.Append(id, '&Load 1D data file') 
     380        wx.EVT_MENU(self, id, self._onLoad1DData) 
    364381        
     382        id = wx.NewId() 
    365383        slicerpop.AppendSeparator() 
    366         slicerpop.Append(315, '&Properties') 
    367         wx.EVT_MENU(self, 315, self._onProperties) 
    368          
     384        slicerpop.Append(id, '&Properties') 
     385        wx.EVT_MENU(self, id, self._onProperties) 
     386         
     387        id = wx.NewId() 
    369388        slicerpop.AppendSeparator() 
    370         slicerpop.Append(317, '&Linear Fit') 
    371         wx.EVT_MENU(self, 317, self.onFitting) 
    372          
     389        slicerpop.Append(id, '&Linear Fit') 
     390        wx.EVT_MENU(self, id, self.onFitting) 
     391         
     392        id = wx.NewId() 
    373393        slicerpop.AppendSeparator() 
    374         slicerpop.Append(318, '&Reset Graph') 
    375         wx.EVT_MENU(self, 318, self.onResetGraph) 
     394        slicerpop.Append(id, '&Reset Graph') 
     395        wx.EVT_MENU(self, id, self.onResetGraph) 
    376396        
    377397        pos = event.GetPosition() 
     
    452472        self.subplot.set_yscale('linear') 
    453473        self.subplot.set_xscale('linear') 
     474         
    454475        # Convert tuple (lo,hi) to array [(x-lo),(hi-x)] 
    455476        if dx != None and type(dx) == type(()): 
     
    462483                                   marker=self._symbol(symbol),linestyle='',label=label) 
    463484        else: 
     485            col = self._color(color) 
    464486            self.subplot.errorbar(x, y, yerr=dy, xerr=None, 
    465              ecolor=self._color(color), capsize=2,linestyle='', barsabove=False, 
     487             ecolor=col, capsize=2,linestyle='', barsabove=False, 
     488             mec=col, mfc=col, 
    466489             marker=self._symbol(symbol), 
    467490             lolims=False, uplims=False, 
     
    490513        return self.symbollist[s%len(self.symbollist)] 
    491514    
    492     def _onEVT_FUNC_PROPERTY(self): 
     515    def _replot(self): 
     516        """ 
     517            Rescale the plottables according to the latest 
     518            user selection and update the plot 
     519        """ 
     520        self.graph.reset_scale() 
     521        self._onEVT_FUNC_PROPERTY(remove_fit=False) 
     522         
     523        #TODO: Why do we have to have the following line? 
     524        self.fit_result.reset_view() 
     525         
     526        self.graph.render(self) 
     527        self.subplot.figure.canvas.draw_idle() 
     528    
     529    def _onEVT_FUNC_PROPERTY(self, remove_fit=True): 
    493530        """ 
    494531             Receive the x and y transformation from myDialog,Transforms x and y in View 
     
    497534        list =[] 
    498535        list = self.graph.returnPlottable() 
    499         self.fit_result.x =[]   
    500         self.fit_result.y =[]  
    501         self.fit_result.dx=None 
    502         self.fit_result.dy=None 
     536         
     537        if remove_fit: 
     538            self.fit_result.x =[]   
     539            self.fit_result.y =[]  
     540            self.fit_result.dx=None 
     541            self.fit_result.dy=None 
     542            self.graph.delete(self.fit_result) 
    503543         
    504544        for item in list: 
  • guitools/fitDialog.py

    r6a8adb0 r052a66bc  
    1313        Return a float in a standardized, human-readable formatted string  
    1414    """ 
     15    try:  
     16        value = float(value) 
     17    except: 
     18        print "returning 0" 
     19        return "0" 
     20     
    1521    if high: 
    1622        return "%-6.4g" % value 
     
    130136        iy += 1 
    131137        ix = 0 
    132         sizer.Add(wx.StaticText(self, -1, 'Plotted range'),(iy, ix),(1,1),\ 
     138        sizer.Add(wx.StaticText(self, -1, 'Maximum range'),(iy, ix),(1,1),\ 
    133139                   wx.LEFT|wx.EXPAND|wx.ADJUST_MINSIZE, 15) 
    134140        ix +=1 
     
    190196         
    191197        if self.Avalue==None: 
    192             self.tcA.SetLabel(str(self.default_A)) 
     198            self.tcA.SetLabel(format_number(self.default_A)) 
    193199        else : 
    194             self.tcA.SetLabel(str(self.Avalue)) 
     200            self.tcA.SetLabel(format_number(self.Avalue)) 
    195201        if self.Bvalue==None: 
    196             self.tcB.SetLabel(str(self.default_B)) 
     202            self.tcB.SetLabel(format_number(self.default_B)) 
    197203        else: 
    198             self.tcB.SetLabel(str(self.Bvalue)) 
     204            self.tcB.SetLabel(format_number(self.Bvalue)) 
    199205        if self.ErrAvalue==None: 
    200             self.tcErrA.SetLabel(str(0.0)) 
     206            self.tcErrA.SetLabel(format_number(0.0)) 
    201207        else: 
    202             self.tcErrA.SetLabel(str(self.ErrAvalue)) 
     208            self.tcErrA.SetLabel(format_number(self.ErrAvalue)) 
    203209        if self.ErrBvalue==None: 
    204             self.tcErrB.SetLabel(str(0.0)) 
     210            self.tcErrB.SetLabel(format_number(0.0)) 
    205211        else: 
    206             self.tcErrB.SetLabel(str(self.ErrBvalue)) 
     212            self.tcErrB.SetLabel(format_number(self.ErrBvalue)) 
    207213        if self.Chivalue==None: 
    208             self.tcChi.SetLabel(str(0.0)) 
     214            self.tcChi.SetLabel(format_number(0.0)) 
    209215        else: 
    210             self.tcChi.SetLabel(str(self.Chivalue)) 
     216            self.tcChi.SetLabel(format_number(self.Chivalue)) 
    211217        if self.plottable.x !=[]: 
    212218            self.mini =min(self.plottable.x) 
  • guitools/plottables.py

    r05da1f89 r052a66bc  
    173173        """Detect if any graphed plottables have changed""" 
    174174        return any([p.changed() for p in self.plottables]) 
     175     
     176    def get_range(self): 
     177        """ 
     178            Return the range of all displayed plottables 
     179        """ 
     180        min = None 
     181        max = None 
     182         
     183        for p in self.plottables: 
     184            if p.hidden==True: 
     185                continue 
     186             
     187            if not p.x==None: 
     188                for x_i in p.x: 
     189                    if min==None or x_i<min: 
     190                        min = x_i 
     191                    if max==None or x_i>max: 
     192                        max = x_i 
     193                         
     194        return min, max 
    175195 
    176196    def delete(self,plottable): 
     
    183203            self.color =0  
    184204             
     205    def reset_scale(self): 
     206        """ 
     207            Resets the scale transformation data to the underlying data 
     208        """ 
     209        for p in self.plottables: 
     210            p.reset_view() 
    185211 
    186212    def reset(self): 
     
    321347 
    322348 
    323 class Plottable: 
     349class Plottable(object): 
     350     
     351    # Short ascii name to refer to the plottable in a menu  
     352    short_name = None 
     353     
     354    # Data 
     355    x  = None 
     356    y  = None 
     357    dx = None 
     358    dy = None 
     359     
     360    # Parameter to allow a plot to be part of the list without being displayed 
     361    hidden = False 
     362 
     363    def __setattr__(self, name, value): 
     364        """ 
     365            Take care of changes in View when data is changed. 
     366            This method is provided for backward compatibility. 
     367        """ 
     368        object.__setattr__(self, name, value) 
     369         
     370        if name in ['x', 'y', 'dx', 'dy']: 
     371            self.reset_view() 
     372            #print "self.%s has been called" % name 
     373 
     374    def set_data(self, x, y, dx=None, dy=None): 
     375        self.x = x 
     376        self.y = y 
     377        self.dy = dy 
     378        self.dx = dx 
     379        self.transformView() 
     380     
    324381    def xaxis(self, name, units): 
    325382        """ 
     
    409466        plot.xaxis(self._xaxis, self._xunit) 
    410467        plot.yaxis(self._yaxis, self._yunit) 
     468         
     469    def is_empty(self): 
     470        """ 
     471            Returns True if there is no data stored in the plottable 
     472        """ 
     473        if not self.x==None and len(self.x)==0 \ 
     474            and not self.y==None and len(self.y)==0: 
     475            return True 
     476        return False 
     477         
    411478         
    412479    def colors(self): 
     
    500567            self.funcdx= None 
    501568            self.funcdy= None 
     569 
    502570        def transform(self, x=None,y=None,dx=None, dy=None): 
    503571            """ 
     
    512580            # Sanity check 
    513581            # Do the transofrmation only when x and y are empty 
     582            has_err_x = not (dx==None or len(dx)==0) 
     583            has_err_y = not (dy==None or len(dy)==0) 
     584             
    514585            if (x!=None) and (y!=None):  
    515                 if dx and not len(x)==len(dx): 
     586                if not dx==None and not len(dx)==0 and not len(x)==len(dx): 
    516587                        raise ValueError, "Plottable.View: Given x and dx are not of the same length"  
    517588                # Check length of y array 
     
    519590                    raise ValueError, "Plottable.View: Given y and x are not of the same length" 
    520591             
    521                 if dy and not len(y)==len(dy): 
    522                     raise ValueError, "Plottable.View: Given y and dy are not of the same length" 
     592                if not dy==None and not len(dy)==0 and not len(y)==len(dy): 
     593                    message = "Plottable.View: Given y and dy are not of the same length: len(y)=%s, len(dy)=%s" %(len(y), len(dy)) 
     594                    raise ValueError, message 
     595                 
     596                 
    523597                self.x = [] 
    524598                self.y = [] 
    525                 self.dx = [] 
    526                 self.dy = [] 
     599                if has_err_x: 
     600                    self.dx = [] 
     601                else: 
     602                    self.dx = None 
     603                if has_err_y: 
     604                    self.dy = [] 
     605                else: 
     606                    self.dy = None 
    527607                tempx=[] 
    528608                tempy=[] 
    529                 if dx==None: 
     609                 
     610                if not has_err_x: 
    530611                    dx=numpy.zeros(len(x)) 
    531                 if dy==None: 
     612                if not has_err_y: 
    532613                    dy=numpy.zeros(len(y)) 
    533614               
     
    536617                         tempx =self.funcx(x[i],y[i]) 
    537618                         tempy =self.funcy(y[i],x[i]) 
    538                          tempdx = self.funcdx(x[i], y[i], dx[i], dy[i]) 
    539                          tempdy = self.funcdy(y[i], x[i], dy[i], dx[i]) 
     619                         if has_err_x: 
     620                             tempdx = self.funcdx(x[i], y[i], dx[i], dy[i]) 
     621                         if has_err_y: 
     622                             tempdy = self.funcdy(y[i], x[i], dy[i], dx[i]) 
    540623                         
    541624                         self.x.append(tempx) 
    542625                         self.y.append(tempy) 
    543                          self.dx.append(tempdx) 
    544                          self.dy.append(tempdy) 
     626                         if has_err_x: 
     627                             self.dx.append(tempdx) 
     628                         if has_err_y: 
     629                             self.dy.append(tempdy) 
    545630                    except: 
    546631                         tempx=x[i] 
    547632                         tempy=y[i] 
    548                          print "View.transform: skipping point x %g" % x[i] 
    549                          print "View.transform: skipping point y %g" % y[i] 
    550                          print "View.transform: skipping point dy %g" % dy[i] 
     633                         print "View.transform: skipping point x=%g y=%g" % (x[i], y[i]) 
    551634                          
    552635                         print sys.exc_value   
    553636                
    554637                # Sanity check 
    555                 if not (len(self.x)==len(self.dx))and(len(self.x)==len(self.dy))\ 
    556                 and(len(self.x)==len(self.y))and(len(self.y)==len(self.dy)) : 
    557                         raise ValueError, "Plottable.View: Given x,y,dy and dx are not of the same length"  
     638                if not len(self.x)==len(self.y): 
     639                    raise ValueError, "Plottable.View: transformed x and y are not of the same length"  
     640                if has_err_x and not (len(self.x) and len(self.dx)): 
     641                    raise ValueError, "Plottable.View: transformed x and dx are not of the same length"  
     642                if has_err_y and not (len(self.y) and len(self.dy)): 
     643                    raise ValueError, "Plottable.View: transformed y and dy are not of the same length"  
     644                 
    558645                # Check that negative values are not plot on x and y axis for log10 transformation 
    559646                self.check_data_logX() 
     
    564651                self.DXreel = self.dx 
    565652                self.DYreel = self.dy 
    566                  
    567653                 
    568654                 
     
    749835         
    750836    def render(self,plot,**kw): 
    751         #plot.curve(self.x,self.y,dy=self.dy,**kw) 
    752837        plot.curve(self.view.x,self.view.y,dy=self.view.dy,**kw) 
    753838 
Note: See TracChangeset for help on using the changeset viewer.