[ef0c170] | 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 | |
---|
[0d9dae8] | 8 | import math |
---|
| 9 | import wx |
---|
[32c0841] | 10 | #from copy import deepcopy |
---|
[ef0c170] | 11 | # Debug printout |
---|
[79492222] | 12 | from sas.guiframe.events import NewPlotEvent |
---|
| 13 | from sas.guiframe.events import StatusEvent |
---|
| 14 | from sas.guiframe.events import SlicerParameterEvent |
---|
| 15 | from sas.guiframe.events import EVT_SLICER_PARS |
---|
[ef0c170] | 16 | from BaseInteractor import _BaseInteractor |
---|
[79492222] | 17 | from sas.guiframe.dataFitting import Data1D |
---|
[ef0c170] | 18 | |
---|
| 19 | class AnnulusInteractor(_BaseInteractor): |
---|
| 20 | """ |
---|
[83f4445] | 21 | Select an annulus through a 2D plot. |
---|
| 22 | This interactor is used to average 2D data with the region |
---|
| 23 | defined by 2 radius. |
---|
| 24 | this class is defined by 2 Ringinterators. |
---|
[ef0c170] | 25 | """ |
---|
[32c0841] | 26 | def __init__(self, base, axes, color='black', zorder=3): |
---|
[ef0c170] | 27 | |
---|
| 28 | _BaseInteractor.__init__(self, base, axes, color=color) |
---|
| 29 | self.markers = [] |
---|
| 30 | self.axes = axes |
---|
[32c0841] | 31 | self.base = base |
---|
| 32 | self.qmax = min(math.fabs(self.base.data2D.xmax), |
---|
| 33 | math.fabs(self.base.data2D.xmin)) #must be positive |
---|
[ef0c170] | 34 | self.connect = self.base.connect |
---|
[eba08f1a] | 35 | |
---|
[ef0c170] | 36 | ## Number of points on the plot |
---|
[400155b] | 37 | self.nbins = 36 |
---|
[a2c38de] | 38 | #Cursor position of Rings (Left(-1) or Right(1)) |
---|
[32c0841] | 39 | self.xmaxd = self.base.data2D.xmax |
---|
| 40 | self.xmind = self.base.data2D.xmin |
---|
[ef0c170] | 41 | |
---|
[32c0841] | 42 | if (self.xmaxd + self.xmind) > 0: |
---|
| 43 | self.sign = 1 |
---|
[a2c38de] | 44 | else: |
---|
[32c0841] | 45 | self.sign = -1 |
---|
[ef0c170] | 46 | # Inner circle |
---|
[32c0841] | 47 | self.inner_circle = RingInteractor(self, self.base.subplot, |
---|
| 48 | zorder=zorder, |
---|
| 49 | r=self.qmax/2.0, sign=self.sign) |
---|
[bd1d9d9] | 50 | self.inner_circle.qmax = self.qmax |
---|
[32c0841] | 51 | self.outer_circle = RingInteractor(self, self.base.subplot, |
---|
| 52 | zorder=zorder+1, r=self.qmax/1.8, |
---|
| 53 | sign=self.sign) |
---|
| 54 | self.outer_circle.qmax = self.qmax * 1.2 |
---|
[ef0c170] | 55 | self.update() |
---|
[7ab9241] | 56 | self._post_data() |
---|
[ef0c170] | 57 | |
---|
| 58 | # Bind to slice parameter events |
---|
[1ce365f8] | 59 | self.base.Bind(EVT_SLICER_PARS, self._onEVT_SLICER_PARS) |
---|
[a2c38de] | 60 | |
---|
[ef0c170] | 61 | def _onEVT_SLICER_PARS(self, event): |
---|
[eba08f1a] | 62 | """ |
---|
[83f4445] | 63 | receive an event containing parameters values to reset the slicer |
---|
| 64 | |
---|
| 65 | :param event: event of type SlicerParameterEvent with params as |
---|
[eba08f1a] | 66 | attribute |
---|
[83f4445] | 67 | |
---|
[eba08f1a] | 68 | """ |
---|
[32c0841] | 69 | wx.PostEvent(self.base, |
---|
| 70 | StatusEvent(status="AnnulusSlicer._onEVT_SLICER_PARS")) |
---|
[ef0c170] | 71 | event.Skip() |
---|
| 72 | if event.type == self.__class__.__name__: |
---|
| 73 | self.set_params(event.params) |
---|
| 74 | self.base.update() |
---|
| 75 | |
---|
| 76 | def set_layer(self, n): |
---|
[eba08f1a] | 77 | """ |
---|
[83f4445] | 78 | Allow adding plot to the same panel |
---|
| 79 | |
---|
| 80 | :param n: the number of layer |
---|
| 81 | |
---|
[eba08f1a] | 82 | """ |
---|
[ef0c170] | 83 | self.layernum = n |
---|
| 84 | self.update() |
---|
| 85 | |
---|
| 86 | def clear(self): |
---|
[eba08f1a] | 87 | """ |
---|
[83f4445] | 88 | Clear the slicer and all connected events related to this slicer |
---|
[eba08f1a] | 89 | """ |
---|
[ef0c170] | 90 | self.clear_markers() |
---|
| 91 | self.outer_circle.clear() |
---|
| 92 | self.inner_circle.clear() |
---|
[18eba35] | 93 | self.base.connect.clearall() |
---|
[d468daa] | 94 | self.base.Unbind(EVT_SLICER_PARS) |
---|
[ef0c170] | 95 | |
---|
| 96 | def update(self): |
---|
| 97 | """ |
---|
[83f4445] | 98 | Respond to changes in the model by recalculating the profiles and |
---|
| 99 | resetting the widgets. |
---|
[ef0c170] | 100 | """ |
---|
| 101 | # Update locations |
---|
| 102 | self.inner_circle.update() |
---|
| 103 | self.outer_circle.update() |
---|
| 104 | |
---|
| 105 | def save(self, ev): |
---|
| 106 | """ |
---|
[83f4445] | 107 | Remember the roughness for this layer and the next so that we |
---|
| 108 | can restore on Esc. |
---|
[ef0c170] | 109 | """ |
---|
| 110 | self.base.freeze_axes() |
---|
| 111 | self.inner_circle.save(ev) |
---|
| 112 | self.outer_circle.save(ev) |
---|
| 113 | |
---|
[32c0841] | 114 | def _post_data(self, nbins=None): |
---|
[eba08f1a] | 115 | """ |
---|
[83f4445] | 116 | Uses annulus parameters to plot averaged data into 1D data. |
---|
| 117 | |
---|
| 118 | :param nbins: the number of points to plot |
---|
| 119 | |
---|
[eba08f1a] | 120 | """ |
---|
| 121 | #Data to average |
---|
[ef0c170] | 122 | data = self.base.data2D |
---|
| 123 | # If we have no data, just return |
---|
| 124 | if data == None: |
---|
| 125 | return |
---|
| 126 | |
---|
[79492222] | 127 | from sas.dataloader.manipulations import Ring |
---|
[32c0841] | 128 | rmin = min(math.fabs(self.inner_circle.get_radius()), |
---|
[3b909b7] | 129 | math.fabs(self.outer_circle.get_radius())) |
---|
| 130 | rmax = max(math.fabs(self.inner_circle.get_radius()), |
---|
| 131 | math.fabs(self.outer_circle.get_radius())) |
---|
[eba08f1a] | 132 | #if the user does not specify the numbers of points to plot |
---|
[400155b] | 133 | # the default number will be nbins= 36 |
---|
[32c0841] | 134 | if nbins == None: |
---|
[400155b] | 135 | self.nbins = 36 |
---|
[eba08f1a] | 136 | else: |
---|
| 137 | self.nbins = nbins |
---|
| 138 | ## create the data1D Q average of data2D |
---|
[32c0841] | 139 | sect = Ring(r_min=rmin, r_max=rmax, nbins=self.nbins) |
---|
[ef0c170] | 140 | sector = sect(self.base.data2D) |
---|
[32c0841] | 141 | |
---|
| 142 | if hasattr(sector, "dxl"): |
---|
| 143 | dxl = sector.dxl |
---|
[ef0c170] | 144 | else: |
---|
[32c0841] | 145 | dxl = None |
---|
| 146 | if hasattr(sector, "dxw"): |
---|
| 147 | dxw = sector.dxw |
---|
[ef0c170] | 148 | else: |
---|
[32c0841] | 149 | dxw = None |
---|
| 150 | new_plot = Data1D(x=(sector.x - math.pi) * 180/math.pi, |
---|
| 151 | y=sector.y, dy=sector.dy) |
---|
[4ac8556] | 152 | new_plot.dxl = dxl |
---|
| 153 | new_plot.dxw = dxw |
---|
[78cae5a] | 154 | new_plot.name = "AnnulusPhi" +"("+ self.base.data2D.name+")" |
---|
[ef0c170] | 155 | |
---|
[32c0841] | 156 | new_plot.source = self.base.data2D.source |
---|
[ac9a5f6] | 157 | #new_plot.info=self.base.data2D.info |
---|
[ef0c170] | 158 | new_plot.interactive = True |
---|
[32c0841] | 159 | new_plot.detector = self.base.data2D.detector |
---|
[ef0c170] | 160 | # If the data file does not tell us what the axes are, just assume... |
---|
[14d3495] | 161 | new_plot.xaxis("\\rm{\phi}", 'degrees') |
---|
[fcf072d] | 162 | new_plot.yaxis("\\rm{Intensity} ", "cm^{-1}") |
---|
| 163 | if hasattr(data, "scale") and data.scale == 'linear' and \ |
---|
| 164 | self.base.data2D.name.count("Residuals") > 0: |
---|
| 165 | new_plot.ytransform = 'y' |
---|
| 166 | new_plot.yaxis("\\rm{Residuals} ", "/") |
---|
[21969a4a] | 167 | |
---|
[32c0841] | 168 | new_plot.group_id = "AnnulusPhi" + self.base.data2D.name |
---|
[940aca7] | 169 | new_plot.id = "AnnulusPhi" + self.base.data2D.name |
---|
| 170 | new_plot.is_data= True |
---|
[32c0841] | 171 | new_plot.xtransform = "x" |
---|
| 172 | new_plot.ytransform = "y" |
---|
[13382fc7] | 173 | self.base.parent.update_theory(data_id=data.id, theory=new_plot) |
---|
[ef0c170] | 174 | wx.PostEvent(self.base.parent, NewPlotEvent(plot=new_plot, |
---|
[32c0841] | 175 | title="AnnulusPhi")) |
---|
[ef0c170] | 176 | |
---|
| 177 | def moveend(self, ev): |
---|
[eba08f1a] | 178 | """ |
---|
[83f4445] | 179 | Called when any dragging motion ends. |
---|
| 180 | Post an event (type =SlicerParameterEvent) |
---|
| 181 | to plotter 2D with a copy slicer parameters |
---|
| 182 | Call _post_data method |
---|
[eba08f1a] | 183 | """ |
---|
[ef0c170] | 184 | self.base.thaw_axes() |
---|
[eba08f1a] | 185 | # Post parameters to plotter 2D |
---|
[0d9dae8] | 186 | event = SlicerParameterEvent() |
---|
[ef0c170] | 187 | event.type = self.__class__.__name__ |
---|
| 188 | event.params = self.get_params() |
---|
[d468daa] | 189 | wx.PostEvent(self.base, event) |
---|
[eba08f1a] | 190 | # create a 1D data plot |
---|
[78cae5a] | 191 | #self._post_data() |
---|
[ef0c170] | 192 | |
---|
| 193 | def restore(self): |
---|
| 194 | """ |
---|
| 195 | Restore the roughness for this layer. |
---|
| 196 | """ |
---|
| 197 | self.inner_circle.restore() |
---|
| 198 | self.outer_circle.restore() |
---|
| 199 | |
---|
| 200 | def move(self, x, y, ev): |
---|
| 201 | """ |
---|
| 202 | Process move to a new position, making sure that the move is allowed. |
---|
| 203 | """ |
---|
| 204 | pass |
---|
| 205 | |
---|
| 206 | def set_cursor(self, x, y): |
---|
| 207 | pass |
---|
| 208 | |
---|
| 209 | def get_params(self): |
---|
[eba08f1a] | 210 | """ |
---|
[83f4445] | 211 | Store a copy of values of parameters of the slicer into a dictionary. |
---|
| 212 | |
---|
| 213 | :return params: the dictionary created |
---|
| 214 | |
---|
[eba08f1a] | 215 | """ |
---|
[ef0c170] | 216 | params = {} |
---|
[0bd125d] | 217 | params["inner_radius"] = math.fabs(self.inner_circle._inner_mouse_x) |
---|
| 218 | params["outer_radius"] = math.fabs(self.outer_circle._inner_mouse_x) |
---|
[ef0c170] | 219 | params["nbins"] = self.nbins |
---|
| 220 | return params |
---|
| 221 | |
---|
| 222 | def set_params(self, params): |
---|
[eba08f1a] | 223 | """ |
---|
[83f4445] | 224 | Receive a dictionary and reset the slicer with values contained |
---|
| 225 | in the values of the dictionary. |
---|
| 226 | |
---|
| 227 | :param params: a dictionary containing name of slicer parameters and |
---|
[eba08f1a] | 228 | values the user assigned to the slicer. |
---|
[83f4445] | 229 | |
---|
[eba08f1a] | 230 | """ |
---|
[32c0841] | 231 | inner = math.fabs(params["inner_radius"]) |
---|
| 232 | outer = math.fabs(params["outer_radius"]) |
---|
[ef0c170] | 233 | self.nbins = int(params["nbins"]) |
---|
[eba08f1a] | 234 | ## Update the picture |
---|
[ef0c170] | 235 | self.inner_circle.set_cursor(inner, self.inner_circle._inner_mouse_y) |
---|
| 236 | self.outer_circle.set_cursor(outer, self.outer_circle._inner_mouse_y) |
---|
[eba08f1a] | 237 | ## Post the data given the nbins entered by the user |
---|
[5554566] | 238 | self._post_data(self.nbins) |
---|
[ef0c170] | 239 | |
---|
| 240 | def freeze_axes(self): |
---|
[83f4445] | 241 | """ |
---|
| 242 | """ |
---|
[ef0c170] | 243 | self.base.freeze_axes() |
---|
| 244 | |
---|
| 245 | def thaw_axes(self): |
---|
[83f4445] | 246 | """ |
---|
| 247 | """ |
---|
[ef0c170] | 248 | self.base.thaw_axes() |
---|
| 249 | |
---|
| 250 | def draw(self): |
---|
[83f4445] | 251 | """ |
---|
| 252 | """ |
---|
[ef0c170] | 253 | self.base.draw() |
---|
| 254 | |
---|
| 255 | |
---|
| 256 | class RingInteractor(_BaseInteractor): |
---|
| 257 | """ |
---|
[83f4445] | 258 | Draw a ring Given a radius |
---|
[ef0c170] | 259 | """ |
---|
[32c0841] | 260 | def __init__(self, base, axes, color='black', zorder=5, r=1.0, sign=1): |
---|
[83f4445] | 261 | """ |
---|
| 262 | :param: the color of the line that defined the ring |
---|
| 263 | :param r: the radius of the ring |
---|
| 264 | :param sign: the direction of motion the the marker |
---|
[ef0c170] | 265 | |
---|
[83f4445] | 266 | """ |
---|
[ef0c170] | 267 | _BaseInteractor.__init__(self, base, axes, color=color) |
---|
| 268 | self.markers = [] |
---|
| 269 | self.axes = axes |
---|
[eba08f1a] | 270 | # Current radius of the ring |
---|
[ef0c170] | 271 | self._inner_mouse_x = r |
---|
[eba08f1a] | 272 | #Value of the center of the ring |
---|
[ef0c170] | 273 | self._inner_mouse_y = 0 |
---|
[eba08f1a] | 274 | # previous value of that radius |
---|
[ef0c170] | 275 | self._inner_save_x = r |
---|
[eba08f1a] | 276 | #Save value of the center of the ring |
---|
[ef0c170] | 277 | self._inner_save_y = 0 |
---|
[eba08f1a] | 278 | #Class instantiating RingIterator class |
---|
[32c0841] | 279 | self.base = base |
---|
[eba08f1a] | 280 | #the direction of the motion of the marker |
---|
[32c0841] | 281 | self.sign = sign |
---|
[eba08f1a] | 282 | ## Create a marker |
---|
[ef0c170] | 283 | try: |
---|
| 284 | # Inner circle marker |
---|
[32c0841] | 285 | x_value = [self.sign * math.fabs(self._inner_mouse_x)] |
---|
| 286 | self.inner_marker = self.axes.plot(x_value, |
---|
| 287 | [0], |
---|
| 288 | linestyle='', |
---|
[ef0c170] | 289 | marker='s', markersize=10, |
---|
| 290 | color=self.color, alpha=0.6, |
---|
| 291 | pickradius=5, label="pick", |
---|
[32c0841] | 292 | zorder=zorder, |
---|
[ef0c170] | 293 | visible=True)[0] |
---|
| 294 | except: |
---|
[32c0841] | 295 | x_value = [self.sign * math.fabs(self._inner_mouse_x)] |
---|
| 296 | self.inner_marker = self.axes.plot(x_value, |
---|
| 297 | [0], |
---|
| 298 | linestyle='', |
---|
[ef0c170] | 299 | marker='s', markersize=10, |
---|
| 300 | color=self.color, alpha=0.6, |
---|
| 301 | label="pick", |
---|
| 302 | visible=True)[0] |
---|
[32c0841] | 303 | message = "\nTHIS PROTOTYPE NEEDS THE LATEST" |
---|
| 304 | message += " VERSION OF MATPLOTLIB\n" |
---|
| 305 | message += "Get the SVN version that is at " |
---|
| 306 | message += " least as recent as June 1, 2007" |
---|
[ef0c170] | 307 | |
---|
[32c0841] | 308 | owner = self.base.base.parent |
---|
| 309 | wx.PostEvent(owner, |
---|
| 310 | StatusEvent(status="AnnulusSlicer: %s" % message)) |
---|
[ef0c170] | 311 | |
---|
[eba08f1a] | 312 | # Draw a circle |
---|
[32c0841] | 313 | [self.inner_circle] = self.axes.plot([], [], |
---|
[ef0c170] | 314 | linestyle='-', marker='', |
---|
| 315 | color=self.color) |
---|
[eba08f1a] | 316 | # the number of points that make the ring line |
---|
[e4032d64] | 317 | self.npts = 40 |
---|
[ef0c170] | 318 | |
---|
| 319 | self.connect_markers([self.inner_marker]) |
---|
| 320 | self.update() |
---|
| 321 | |
---|
| 322 | def set_layer(self, n): |
---|
[eba08f1a] | 323 | """ |
---|
[83f4445] | 324 | Allow adding plot to the same panel |
---|
| 325 | |
---|
| 326 | :param n: the number of layer |
---|
| 327 | |
---|
[eba08f1a] | 328 | """ |
---|
[ef0c170] | 329 | self.layernum = n |
---|
| 330 | self.update() |
---|
| 331 | |
---|
| 332 | def clear(self): |
---|
[eba08f1a] | 333 | """ |
---|
[83f4445] | 334 | Clear the slicer and all connected events related to this slicer |
---|
[eba08f1a] | 335 | """ |
---|
[ef0c170] | 336 | self.clear_markers() |
---|
| 337 | try: |
---|
| 338 | self.inner_marker.remove() |
---|
| 339 | self.inner_circle.remove() |
---|
| 340 | except: |
---|
| 341 | # Old version of matplotlib |
---|
| 342 | for item in range(len(self.axes.lines)): |
---|
| 343 | del self.axes.lines[0] |
---|
| 344 | |
---|
| 345 | def get_radius(self): |
---|
[eba08f1a] | 346 | """ |
---|
[83f4445] | 347 | :return self._inner_mouse_x: the current radius of the ring |
---|
[eba08f1a] | 348 | """ |
---|
[ef0c170] | 349 | return self._inner_mouse_x |
---|
| 350 | |
---|
| 351 | def update(self): |
---|
| 352 | """ |
---|
[83f4445] | 353 | Draw the new roughness on the graph. |
---|
[ef0c170] | 354 | """ |
---|
| 355 | # Plot inner circle |
---|
| 356 | x = [] |
---|
| 357 | y = [] |
---|
| 358 | for i in range(self.npts): |
---|
[32c0841] | 359 | phi = 2.0 * math.pi / (self.npts - 1) * i |
---|
[ef0c170] | 360 | |
---|
[32c0841] | 361 | xval = 1.0 * self._inner_mouse_x * math.cos(phi) |
---|
| 362 | yval = 1.0 * self._inner_mouse_x * math.sin(phi) |
---|
[ef0c170] | 363 | |
---|
| 364 | x.append(xval) |
---|
| 365 | y.append(yval) |
---|
[a2c38de] | 366 | |
---|
[32c0841] | 367 | self.inner_marker.set(xdata=[self.sign*math.fabs(self._inner_mouse_x)], |
---|
| 368 | ydata=[0]) |
---|
[ef0c170] | 369 | self.inner_circle.set_data(x, y) |
---|
| 370 | |
---|
| 371 | def save(self, ev): |
---|
| 372 | """ |
---|
| 373 | Remember the roughness for this layer and the next so that we |
---|
| 374 | can restore on Esc. |
---|
| 375 | """ |
---|
| 376 | self._inner_save_x = self._inner_mouse_x |
---|
| 377 | self._inner_save_y = self._inner_mouse_y |
---|
| 378 | self.base.freeze_axes() |
---|
| 379 | |
---|
| 380 | def moveend(self, ev): |
---|
[eba08f1a] | 381 | """ |
---|
[83f4445] | 382 | Called after a dragging motion |
---|
[eba08f1a] | 383 | """ |
---|
[ef0c170] | 384 | self.base.moveend(ev) |
---|
| 385 | |
---|
| 386 | def restore(self): |
---|
| 387 | """ |
---|
| 388 | Restore the roughness for this layer. |
---|
| 389 | """ |
---|
| 390 | self._inner_mouse_x = self._inner_save_x |
---|
| 391 | self._inner_mouse_y = self._inner_save_y |
---|
| 392 | |
---|
| 393 | def move(self, x, y, ev): |
---|
| 394 | """ |
---|
| 395 | Process move to a new position, making sure that the move is allowed. |
---|
| 396 | """ |
---|
| 397 | self._inner_mouse_x = x |
---|
| 398 | self._inner_mouse_y = y |
---|
| 399 | self.base.base.update() |
---|
| 400 | |
---|
| 401 | def set_cursor(self, x, y): |
---|
[eba08f1a] | 402 | """ |
---|
[83f4445] | 403 | draw the ring given x, y value |
---|
[eba08f1a] | 404 | """ |
---|
[ef0c170] | 405 | self.move(x, y, None) |
---|
| 406 | self.update() |
---|
| 407 | |
---|
| 408 | |
---|
| 409 | def get_params(self): |
---|
[eba08f1a] | 410 | """ |
---|
[83f4445] | 411 | Store a copy of values of parameters of the slicer into a dictionary. |
---|
| 412 | |
---|
| 413 | :return params: the dictionary created |
---|
| 414 | |
---|
[eba08f1a] | 415 | """ |
---|
[ef0c170] | 416 | params = {} |
---|
[a2c38de] | 417 | params["radius"] = math.fabs(self._inner_mouse_x) |
---|
[ef0c170] | 418 | return params |
---|
| 419 | |
---|
| 420 | def set_params(self, params): |
---|
[eba08f1a] | 421 | """ |
---|
[83f4445] | 422 | Receive a dictionary and reset the slicer with values contained |
---|
| 423 | in the values of the dictionary. |
---|
| 424 | |
---|
| 425 | :param params: a dictionary containing name of slicer parameters and |
---|
[eba08f1a] | 426 | values the user assigned to the slicer. |
---|
[83f4445] | 427 | |
---|
[eba08f1a] | 428 | """ |
---|
[ef0c170] | 429 | x = params["radius"] |
---|
| 430 | self.set_cursor(x, self._inner_mouse_y) |
---|
| 431 | |
---|
[c5874f2] | 432 | class CircularMask(_BaseInteractor): |
---|
| 433 | """ |
---|
[83f4445] | 434 | Draw a ring Given a radius |
---|
[c5874f2] | 435 | """ |
---|
[32c0841] | 436 | def __init__(self, base, axes, color='grey', zorder=3, side=None): |
---|
[83f4445] | 437 | """ |
---|
[c5874f2] | 438 | |
---|
[83f4445] | 439 | :param: the color of the line that defined the ring |
---|
| 440 | :param r: the radius of the ring |
---|
| 441 | :param sign: the direction of motion the the marker |
---|
| 442 | |
---|
| 443 | """ |
---|
[c5874f2] | 444 | _BaseInteractor.__init__(self, base, axes, color=color) |
---|
| 445 | self.markers = [] |
---|
| 446 | self.axes = axes |
---|
[32c0841] | 447 | self.base = base |
---|
[c5874f2] | 448 | self.is_inside = side |
---|
[32c0841] | 449 | self.qmax = min(math.fabs(self.base.data.xmax), |
---|
| 450 | math.fabs(self.base.data.xmin)) #must be positive |
---|
[c5874f2] | 451 | self.connect = self.base.connect |
---|
| 452 | |
---|
| 453 | #Cursor position of Rings (Left(-1) or Right(1)) |
---|
[32c0841] | 454 | self.xmaxd = self.base.data.xmax |
---|
| 455 | self.xmind = self.base.data.xmin |
---|
[c5874f2] | 456 | |
---|
[32c0841] | 457 | if (self.xmaxd + self.xmind) > 0: |
---|
| 458 | self.sign = 1 |
---|
[c5874f2] | 459 | else: |
---|
[32c0841] | 460 | self.sign = -1 |
---|
[c5874f2] | 461 | # Inner circle |
---|
[32c0841] | 462 | self.outer_circle = RingInteractor(self, self.base.subplot, 'blue', |
---|
| 463 | zorder=zorder+1, r=self.qmax/1.8, |
---|
| 464 | sign=self.sign) |
---|
| 465 | self.outer_circle.qmax = self.qmax * 1.2 |
---|
[c5874f2] | 466 | self.update() |
---|
| 467 | self._post_data() |
---|
| 468 | |
---|
| 469 | # Bind to slice parameter events |
---|
| 470 | #self.base.Bind(EVT_SLICER_PARS, self._onEVT_SLICER_PARS) |
---|
| 471 | |
---|
| 472 | def _onEVT_SLICER_PARS(self, event): |
---|
| 473 | """ |
---|
[83f4445] | 474 | receive an event containing parameters values to reset the slicer |
---|
| 475 | |
---|
| 476 | :param event: event of type SlicerParameterEvent with params as |
---|
[c5874f2] | 477 | attribute |
---|
| 478 | """ |
---|
[32c0841] | 479 | wx.PostEvent(self.base, |
---|
| 480 | StatusEvent(status="AnnulusSlicer._onEVT_SLICER_PARS")) |
---|
[c5874f2] | 481 | event.Skip() |
---|
| 482 | if event.type == self.__class__.__name__: |
---|
| 483 | self.set_params(event.params) |
---|
| 484 | self.base.update() |
---|
| 485 | |
---|
| 486 | def set_layer(self, n): |
---|
| 487 | """ |
---|
[83f4445] | 488 | Allow adding plot to the same panel |
---|
| 489 | |
---|
| 490 | :param n: the number of layer |
---|
| 491 | |
---|
[c5874f2] | 492 | """ |
---|
| 493 | self.layernum = n |
---|
| 494 | self.update() |
---|
| 495 | |
---|
| 496 | def clear(self): |
---|
| 497 | """ |
---|
[83f4445] | 498 | Clear the slicer and all connected events related to this slicer |
---|
[c5874f2] | 499 | """ |
---|
| 500 | self.clear_markers() |
---|
| 501 | self.outer_circle.clear() |
---|
| 502 | self.base.connect.clearall() |
---|
| 503 | #self.base.Unbind(EVT_SLICER_PARS) |
---|
| 504 | |
---|
| 505 | def update(self): |
---|
| 506 | """ |
---|
[83f4445] | 507 | Respond to changes in the model by recalculating the profiles and |
---|
| 508 | resetting the widgets. |
---|
[c5874f2] | 509 | """ |
---|
| 510 | # Update locations |
---|
| 511 | self.outer_circle.update() |
---|
| 512 | #if self.is_inside != None: |
---|
| 513 | out = self._post_data() |
---|
| 514 | return out |
---|
| 515 | |
---|
| 516 | def save(self, ev): |
---|
| 517 | """ |
---|
[83f4445] | 518 | Remember the roughness for this layer and the next so that we |
---|
| 519 | can restore on Esc. |
---|
[c5874f2] | 520 | """ |
---|
| 521 | self.base.freeze_axes() |
---|
| 522 | self.outer_circle.save(ev) |
---|
| 523 | |
---|
| 524 | def _post_data(self): |
---|
| 525 | """ |
---|
[83f4445] | 526 | Uses annulus parameters to plot averaged data into 1D data. |
---|
| 527 | |
---|
| 528 | :param nbins: the number of points to plot |
---|
| 529 | |
---|
[c5874f2] | 530 | """ |
---|
| 531 | #Data to average |
---|
| 532 | data = self.base.data |
---|
| 533 | |
---|
| 534 | # If we have no data, just return |
---|
| 535 | if data == None: |
---|
| 536 | return |
---|
| 537 | mask = data.mask |
---|
[79492222] | 538 | from sas.dataloader.manipulations import Ringcut |
---|
[c5874f2] | 539 | |
---|
[32c0841] | 540 | rmin = 0 |
---|
[c5874f2] | 541 | rmax = math.fabs(self.outer_circle.get_radius()) |
---|
| 542 | |
---|
| 543 | ## create the data1D Q average of data2D |
---|
[32c0841] | 544 | mask = Ringcut(r_min=rmin, r_max= rmax) |
---|
[c5874f2] | 545 | |
---|
| 546 | if self.is_inside: |
---|
[32c0841] | 547 | out = (mask(data) == False) |
---|
[c5874f2] | 548 | else: |
---|
| 549 | out = (mask(data)) |
---|
| 550 | #self.base.data.mask=out |
---|
| 551 | return out |
---|
| 552 | |
---|
| 553 | |
---|
| 554 | def moveend(self, ev): |
---|
| 555 | """ |
---|
[83f4445] | 556 | Called when any dragging motion ends. |
---|
| 557 | Post an event (type =SlicerParameterEvent) |
---|
| 558 | to plotter 2D with a copy slicer parameters |
---|
| 559 | Call _post_data method |
---|
[c5874f2] | 560 | """ |
---|
| 561 | self.base.thaw_axes() |
---|
| 562 | # create a 1D data plot |
---|
| 563 | self._post_data() |
---|
| 564 | |
---|
| 565 | def restore(self): |
---|
| 566 | """ |
---|
| 567 | Restore the roughness for this layer. |
---|
| 568 | """ |
---|
| 569 | self.outer_circle.restore() |
---|
| 570 | |
---|
| 571 | def move(self, x, y, ev): |
---|
| 572 | """ |
---|
| 573 | Process move to a new position, making sure that the move is allowed. |
---|
| 574 | """ |
---|
| 575 | pass |
---|
| 576 | |
---|
| 577 | def set_cursor(self, x, y): |
---|
| 578 | pass |
---|
| 579 | |
---|
| 580 | def get_params(self): |
---|
| 581 | """ |
---|
[83f4445] | 582 | Store a copy of values of parameters of the slicer into a dictionary. |
---|
| 583 | |
---|
| 584 | :return params: the dictionary created |
---|
| 585 | |
---|
[c5874f2] | 586 | """ |
---|
| 587 | params = {} |
---|
| 588 | params["outer_radius"] = math.fabs(self.outer_circle._inner_mouse_x) |
---|
| 589 | return params |
---|
| 590 | |
---|
| 591 | def set_params(self, params): |
---|
| 592 | """ |
---|
[83f4445] | 593 | Receive a dictionary and reset the slicer with values contained |
---|
| 594 | in the values of the dictionary. |
---|
| 595 | |
---|
| 596 | :param params: a dictionary containing name of slicer parameters and |
---|
[c5874f2] | 597 | values the user assigned to the slicer. |
---|
| 598 | """ |
---|
| 599 | outer = math.fabs(params["outer_radius"] ) |
---|
| 600 | ## Update the picture |
---|
| 601 | self.outer_circle.set_cursor(outer, self.outer_circle._inner_mouse_y) |
---|
| 602 | ## Post the data given the nbins entered by the user |
---|
| 603 | self._post_data() |
---|
| 604 | |
---|
| 605 | def freeze_axes(self): |
---|
| 606 | self.base.freeze_axes() |
---|
| 607 | |
---|
| 608 | def thaw_axes(self): |
---|
| 609 | self.base.thaw_axes() |
---|
| 610 | |
---|
| 611 | def draw(self): |
---|
| 612 | self.base.update() |
---|
[400155b] | 613 | |
---|