source: sasview/guiframe/local_perspectives/plotting/AnnulusSlicer.py @ 78cae5a

ESS_GUIESS_GUI_DocsESS_GUI_batch_fittingESS_GUI_bumps_abstractionESS_GUI_iss1116ESS_GUI_iss879ESS_GUI_iss959ESS_GUI_openclESS_GUI_orderingESS_GUI_sync_sascalccostrafo411magnetic_scattrelease-4.1.1release-4.1.2release-4.2.2release_4.0.1ticket-1009ticket-1094-headlessticket-1242-2d-resolutionticket-1243ticket-1249ticket885unittest-saveload
Last change on this file since 78cae5a was 78cae5a, checked in by Jae Cho <jhjcho@…>, 15 years ago

used ring avg instead of sectorphi

  • Property mode set to 100644
File size: 13.2 KB
Line 
1#TODO: the line slicer should listen to all 2DREFRESH events, get the data and slice it
2#      before pushing a new 1D data update.
3
4#
5#TODO: NEED MAJOR REFACTOR
6#
7
8import math
9import wx
10from copy import deepcopy
11# Debug printout
12from sans.guicomm.events import NewPlotEvent, StatusEvent,SlicerParameterEvent,EVT_SLICER_PARS
13from BaseInteractor import _BaseInteractor
14from sans.guiframe.dataFitting import Data1D
15
16class AnnulusInteractor(_BaseInteractor):
17    """
18         Select an annulus through a 2D plot.
19         This interactor is used to average 2D data  with the region
20         defined by 2 radius.
21         this class is defined by 2 Ringinterators.
22    """
23    def __init__(self,base,axes,color='black', zorder=3):
24       
25        _BaseInteractor.__init__(self, base, axes, color=color)
26        self.markers = []
27        self.axes = axes
28        self.base= base
29        self.qmax = min(math.fabs(self.base.data2D.xmax),math.fabs(self.base.data2D.xmin))  #must be positive
30        self.connect = self.base.connect
31   
32        ## Number of points on the plot
33        self.nbins = 20
34       
35        #Cursor position of Rings (Left(-1) or Right(1))
36        self.xmaxd=self.base.data2D.xmax
37        self.xmind=self.base.data2D.xmin
38
39        if (self.xmaxd+self.xmind)>0:
40            self.sign=1
41        else:
42            self.sign=-1
43                 
44        # Inner circle
45        self.inner_circle = RingInteractor(self, self.base.subplot, zorder=zorder, r=self.qmax/2.0,sign=self.sign)
46        self.inner_circle.qmax = self.qmax
47        self.outer_circle = RingInteractor(self, self.base.subplot, zorder=zorder+1, r=self.qmax/1.8,sign=self.sign)
48        self.outer_circle.qmax = self.qmax*1.2
49       
50        self.update()
51        self._post_data()
52       
53        # Bind to slice parameter events
54        self.base.Bind(EVT_SLICER_PARS, self._onEVT_SLICER_PARS)
55       
56       
57
58    def _onEVT_SLICER_PARS(self, event):
59        """
60            receive an event containing parameters values to reset the slicer
61            @param event: event of type SlicerParameterEvent with params as
62            attribute
63        """
64        wx.PostEvent(self.base, StatusEvent(status="AnnulusSlicer._onEVT_SLICER_PARS"))
65        event.Skip()
66        if event.type == self.__class__.__name__:
67            self.set_params(event.params)
68            self.base.update()
69
70    def set_layer(self, n):
71        """
72             Allow adding plot to the same panel
73             @param n: the number of layer
74        """
75        self.layernum = n
76        self.update()
77       
78    def clear(self):
79        """
80            Clear the slicer and all connected events related to this slicer
81        """
82        self.clear_markers()
83        self.outer_circle.clear()
84        self.inner_circle.clear()
85        self.base.connect.clearall()
86        self.base.Unbind(EVT_SLICER_PARS)
87       
88       
89    def update(self):
90        """
91            Respond to changes in the model by recalculating the profiles and
92            resetting the widgets.
93        """
94        # Update locations       
95        self.inner_circle.update()
96        self.outer_circle.update()
97       
98
99    def save(self, ev):
100        """
101            Remember the roughness for this layer and the next so that we
102            can restore on Esc.
103        """
104        self.base.freeze_axes()
105        self.inner_circle.save(ev)
106        self.outer_circle.save(ev)
107
108    def _post_data(self,nbins=None):
109        """
110            Uses annulus parameters to plot averaged data into 1D data.
111            @param nbins: the number of points to plot
112        """
113        #Data to average
114        data = self.base.data2D
115        # If we have no data, just return
116        if data == None:
117            return
118       
119        from DataLoader.manipulations import Ring
120   
121        rmin= min(math.fabs(self.inner_circle.get_radius()),
122                  math.fabs(self.outer_circle.get_radius()))
123        rmax = max(math.fabs(self.inner_circle.get_radius()),
124                   math.fabs(self.outer_circle.get_radius()))
125        #if the user does not specify the numbers of points to plot
126        # the default number will be nbins= 20
127        if nbins==None:
128            self.nbins= 20
129        else:
130            self.nbins = nbins
131        ## create the data1D Q average of data2D   
132        sect = Ring(r_min=rmin , r_max= rmax, nbins=self.nbins)
133        sector = sect(self.base.data2D)
134       
135       
136        if hasattr(sector,"dxl"):
137            dxl= sector.dxl
138        else:
139            dxl= None
140        if hasattr(sector,"dxw"):
141            dxw= sector.dxw
142        else:
143            dxw= None
144       
145        new_plot = Data1D(x=(sector.x-math.pi)*180/math.pi,y=sector.y,dy=sector.dy)
146        new_plot.dxl = dxl
147        new_plot.dxw = dxw
148        new_plot.name = "AnnulusPhi" +"("+ self.base.data2D.name+")"
149       
150        new_plot.source=self.base.data2D.source
151        #new_plot.info=self.base.data2D.info
152       
153        new_plot.interactive = True
154        new_plot.detector =self.base.data2D.detector
155        # If the data file does not tell us what the axes are, just assume...
156        new_plot.xaxis("\\rm{\phi}", 'degrees')
157        new_plot.yaxis("\\rm{Intensity} ","cm^{-1}")
158        new_plot.group_id = "AnnulusPhi"+self.base.data2D.name
159        new_plot.id= "AnnulusPhi"+self.base.data2D.name
160        #new_plot.is_data= True
161       
162        new_plot.xtransform="x"
163        new_plot.ytransform="y"
164        wx.PostEvent(self.base.parent, NewPlotEvent(plot=new_plot,
165                                                 title="AnnulusPhi" ))
166       
167         
168    def moveend(self, ev):
169        """
170            Called when any dragging motion ends.
171            Post an event (type =SlicerParameterEvent)
172            to plotter 2D with a copy  slicer parameters
173            Call  _post_data method
174        """
175        self.base.thaw_axes()
176        # Post parameters to plotter 2D
177        event = SlicerParameterEvent()
178        event.type = self.__class__.__name__
179        event.params = self.get_params()
180        wx.PostEvent(self.base, event)
181        # create a 1D data plot
182        #self._post_data()
183           
184    def restore(self):
185        """
186        Restore the roughness for this layer.
187        """
188        self.inner_circle.restore()
189        self.outer_circle.restore()
190
191    def move(self, x, y, ev):
192        """
193        Process move to a new position, making sure that the move is allowed.
194        """
195        pass
196       
197    def set_cursor(self, x, y):
198        pass
199       
200    def get_params(self):
201        """
202            Store a copy of values of parameters of the slicer into a dictionary.
203            @return params: the dictionary created
204        """
205        params = {}
206        params["inner_radius"] = math.fabs(self.inner_circle._inner_mouse_x)
207        params["outer_radius"] = math.fabs(self.outer_circle._inner_mouse_x)
208        params["nbins"] = self.nbins
209        return params
210   
211    def set_params(self, params):
212        """
213            Receive a dictionary and reset the slicer with values contained
214            in the values of the dictionary.
215            @param params: a dictionary containing name of slicer parameters and
216            values the user assigned to the slicer.
217        """
218        inner = math.fabs(params["inner_radius"] )
219        outer = math.fabs(params["outer_radius"] )
220        self.nbins = int(params["nbins"])
221        ## Update the picture
222        self.inner_circle.set_cursor(inner, self.inner_circle._inner_mouse_y)
223        self.outer_circle.set_cursor(outer, self.outer_circle._inner_mouse_y)
224        ## Post the data given the nbins entered by the user
225        self._post_data(self.nbins)
226       
227    def freeze_axes(self):
228        self.base.freeze_axes()
229       
230    def thaw_axes(self):
231        self.base.thaw_axes()
232
233    def draw(self):
234        self.base.draw()
235
236       
237class RingInteractor(_BaseInteractor):
238    """
239         Draw a ring Given a radius
240         @param: the color of the line that defined the ring
241         @param r: the radius of the ring
242         @param sign: the direction of motion the the marker
243    """
244    def __init__(self,base,axes,color='black', zorder=5, r=1.0,sign=1):
245       
246        _BaseInteractor.__init__(self, base, axes, color=color)
247        self.markers = []
248        self.axes = axes
249        # Current radius of the ring
250        self._inner_mouse_x = r
251        #Value of the center of the ring
252        self._inner_mouse_y = 0
253        # previous value of that radius
254        self._inner_save_x  = r
255        #Save value of the center of the ring
256        self._inner_save_y  = 0
257        #Class instantiating RingIterator class
258        self.base= base
259        #the direction of the motion of the marker
260        self.sign=sign
261        ## Create a marker
262        try:
263            # Inner circle marker
264            self.inner_marker = self.axes.plot([self.sign*math.fabs(self._inner_mouse_x)],[0], linestyle='',
265                                          marker='s', markersize=10,
266                                          color=self.color, alpha=0.6,
267                                          pickradius=5, label="pick", 
268                                          zorder=zorder, # Prefer this to other lines
269                                          visible=True)[0]
270        except:
271            self.inner_marker = self.axes.plot([self.sign*math.fabs(self._inner_mouse_x)],[0], linestyle='',
272                                          marker='s', markersize=10,
273                                          color=self.color, alpha=0.6,
274                                          label="pick", 
275                                          visible=True)[0]
276            message  = "\nTHIS PROTOTYPE NEEDS THE LATEST VERSION OF MATPLOTLIB\n"
277            message += "Get the SVN version that is at least as recent as June 1, 2007"
278           
279            owner=self.base.base.parent
280            wx.PostEvent(owner, StatusEvent(status="AnnulusSlicer: %s"%message))
281           
282        # Draw a circle
283        [self.inner_circle] = self.axes.plot([],[],
284                                      linestyle='-', marker='',
285                                      color=self.color)
286        # the number of points that make the ring line
287        self.npts = 40
288           
289        self.connect_markers([self.inner_marker])
290        self.update()
291
292    def set_layer(self, n):
293        """
294             Allow adding plot to the same panel
295             @param n: the number of layer
296        """
297        self.layernum = n
298        self.update()
299       
300    def clear(self):
301        """
302            Clear the slicer and all connected events related to this slicer
303        """
304        self.clear_markers()
305        try:
306            self.inner_marker.remove()
307            self.inner_circle.remove()
308        except:
309            # Old version of matplotlib
310            for item in range(len(self.axes.lines)):
311                del self.axes.lines[0]
312       
313       
314       
315    def get_radius(self):
316        """
317            @return self._inner_mouse_x: the current radius of the ring
318        """
319        return self._inner_mouse_x
320       
321    def update(self):
322        """
323            Draw the new roughness on the graph.
324        """
325        # Plot inner circle
326        x = []
327        y = []
328        for i in range(self.npts):
329            phi = 2.0*math.pi/(self.npts-1)*i
330           
331            xval = 1.0*self._inner_mouse_x*math.cos(phi) 
332            yval = 1.0*self._inner_mouse_x*math.sin(phi) 
333           
334            x.append(xval)
335            y.append(yval)
336           
337        self.inner_marker.set(xdata=[self.sign*math.fabs(self._inner_mouse_x)],ydata=[0])
338        self.inner_circle.set_data(x, y)       
339
340    def save(self, ev):
341        """
342        Remember the roughness for this layer and the next so that we
343        can restore on Esc.
344        """
345        self._inner_save_x = self._inner_mouse_x
346        self._inner_save_y = self._inner_mouse_y
347        self.base.freeze_axes()
348
349    def moveend(self, ev):
350        """
351            Called after a dragging motion
352        """
353        self.base.moveend(ev)
354           
355    def restore(self):
356        """
357        Restore the roughness for this layer.
358        """
359        self._inner_mouse_x = self._inner_save_x
360        self._inner_mouse_y = self._inner_save_y
361
362    def move(self, x, y, ev):
363        """
364        Process move to a new position, making sure that the move is allowed.
365        """
366        self._inner_mouse_x = x
367        self._inner_mouse_y = y
368        self.base.base.update()
369       
370    def set_cursor(self, x, y):
371        """
372            draw the ring given x, y value
373        """
374        self.move(x, y, None)
375        self.update()
376       
377       
378    def get_params(self):
379        """
380            Store a copy of values of parameters of the slicer into a dictionary.
381            @return params: the dictionary created
382        """
383        params = {}
384        params["radius"] = math.fabs(self._inner_mouse_x)
385        return params
386   
387    def set_params(self, params):
388        """
389            Receive a dictionary and reset the slicer with values contained
390            in the values of the dictionary.
391            @param params: a dictionary containing name of slicer parameters and
392            values the user assigned to the slicer.
393        """
394        x = params["radius"] 
395        self.set_cursor(x, self._inner_mouse_y)
396       
397       
Note: See TracBrowser for help on using the repository browser.