[c5874f2] | 1 | |
---|
| 2 | import math |
---|
| 3 | import wx |
---|
| 4 | from copy import deepcopy |
---|
| 5 | |
---|
| 6 | from BaseInteractor import _BaseInteractor |
---|
| 7 | from SectorSlicer import SideInteractor, LineInteractor |
---|
| 8 | from sans.guicomm.events import SlicerParameterEvent |
---|
| 9 | |
---|
| 10 | class SectorMask(_BaseInteractor): |
---|
| 11 | """ |
---|
[d955bf19] | 12 | Draw a sector slicer.Allow to find the data 2D inside of the sector lines |
---|
[c5874f2] | 13 | """ |
---|
[aef2cf2] | 14 | def __init__(self,base,axes,color='gray', zorder=3, side = False): |
---|
[c5874f2] | 15 | |
---|
| 16 | _BaseInteractor.__init__(self, base, axes, color=color) |
---|
| 17 | ## Class initialization |
---|
| 18 | self.markers = [] |
---|
| 19 | self.axes = axes |
---|
| 20 | self.is_inside = side |
---|
| 21 | ## connect the plot to event |
---|
| 22 | self.connect = self.base.connect |
---|
| 23 | |
---|
| 24 | ## compute qmax limit to reset the graph |
---|
| 25 | x = math.pow(max(self.base.data.xmax,math.fabs(self.base.data.xmin)),2) |
---|
| 26 | y = math.pow(max(self.base.data.ymax,math.fabs(self.base.data.ymin)),2) |
---|
| 27 | self.qmax= math.sqrt(x + y) |
---|
| 28 | ## Number of points on the plot |
---|
| 29 | self.nbins = 20 |
---|
| 30 | ## Angle of the middle line |
---|
| 31 | self.theta2= math.pi/3 |
---|
| 32 | ## Absolute value of the Angle between the middle line and any side line |
---|
| 33 | self.phi=math.pi/12 |
---|
| 34 | |
---|
| 35 | ## Middle line |
---|
| 36 | self.main_line = LineInteractor(self, self.base.subplot,color='blue', zorder=zorder, r=self.qmax, |
---|
| 37 | theta= self.theta2) |
---|
| 38 | self.main_line.qmax = self.qmax |
---|
| 39 | ## Right Side line |
---|
[aef2cf2] | 40 | self.right_line= SideInteractor(self, self.base.subplot,color='gray', zorder=zorder, |
---|
[c5874f2] | 41 | r=self.qmax, |
---|
| 42 | phi= -1*self.phi, |
---|
| 43 | theta2=self.theta2) |
---|
| 44 | self.right_line.qmax = self.qmax |
---|
| 45 | ## Left Side line |
---|
[aef2cf2] | 46 | self.left_line= SideInteractor(self, self.base.subplot,color='gray', zorder=zorder, |
---|
[c5874f2] | 47 | r=self.qmax, |
---|
| 48 | phi= self.phi, |
---|
| 49 | theta2=self.theta2) |
---|
| 50 | self.left_line.qmax = self.qmax |
---|
| 51 | ## draw the sector |
---|
| 52 | self.update() |
---|
| 53 | self._post_data() |
---|
| 54 | |
---|
| 55 | |
---|
| 56 | def clear(self): |
---|
| 57 | """ |
---|
[d955bf19] | 58 | Clear the slicer and all connected events related to this slicer |
---|
[c5874f2] | 59 | """ |
---|
| 60 | self.clear_markers() |
---|
| 61 | self.main_line.clear() |
---|
| 62 | self.left_line.clear() |
---|
| 63 | self.right_line.clear() |
---|
| 64 | self.base.connect.clearall() |
---|
| 65 | #self.base.Unbind(EVT_SLICER_PARS) |
---|
| 66 | |
---|
| 67 | |
---|
| 68 | def update(self): |
---|
| 69 | """ |
---|
[d955bf19] | 70 | Respond to changes in the model by recalculating the profiles and |
---|
| 71 | resetting the widgets. |
---|
[c5874f2] | 72 | """ |
---|
| 73 | # Update locations |
---|
| 74 | ## Check if the middle line was dragged and update the picture accordingly |
---|
| 75 | if self.main_line.has_move: |
---|
| 76 | self.main_line.update() |
---|
| 77 | self.right_line.update( delta= -self.left_line.phi/2, |
---|
| 78 | mline= self.main_line.theta ) |
---|
| 79 | self.left_line.update( delta = self.left_line.phi/2, |
---|
| 80 | mline= self.main_line.theta ) |
---|
| 81 | ## Check if the left side has moved and update the slicer accordingly |
---|
| 82 | if self.left_line.has_move: |
---|
| 83 | self.main_line.update() |
---|
| 84 | self.left_line.update( phi=None, delta=None, mline=self.main_line , |
---|
| 85 | side=True, left=True ) |
---|
| 86 | self.right_line.update( phi= self.left_line.phi, delta= None, |
---|
| 87 | mline= self.main_line, side= True, |
---|
| 88 | left=False, right= True ) |
---|
| 89 | ## Check if the right side line has moved and update the slicer accordingly |
---|
| 90 | if self.right_line.has_move: |
---|
| 91 | self.main_line.update() |
---|
| 92 | self.right_line.update( phi=None, delta=None, mline=self.main_line, |
---|
| 93 | side=True, left=False, right=True ) |
---|
| 94 | self.left_line.update( phi=self.right_line.phi, delta=None, |
---|
| 95 | mline=self.main_line, side=True, left=False ) |
---|
| 96 | #if self.is_inside != None: |
---|
| 97 | out = self._post_data() |
---|
| 98 | return out |
---|
| 99 | |
---|
| 100 | def save(self, ev): |
---|
| 101 | """ |
---|
| 102 | Remember the roughness for this layer and the next so that we |
---|
| 103 | can restore on Esc. |
---|
| 104 | """ |
---|
| 105 | self.base.freeze_axes() |
---|
| 106 | self.main_line.save(ev) |
---|
| 107 | self.right_line.save(ev) |
---|
| 108 | self.left_line.save(ev) |
---|
| 109 | |
---|
| 110 | def _post_data(self): |
---|
| 111 | """ |
---|
[d955bf19] | 112 | compute sector averaging of data into data1D |
---|
[c5874f2] | 113 | """ |
---|
| 114 | ## get the data to average |
---|
| 115 | data = self.base.data |
---|
| 116 | # If we have no data, just return |
---|
| 117 | if data == None: |
---|
| 118 | return |
---|
| 119 | |
---|
| 120 | mask = data.mask |
---|
| 121 | ## Averaging |
---|
| 122 | from DataLoader.manipulations import Sectorcut |
---|
| 123 | radius = self.qmax |
---|
| 124 | phimin = -self.left_line.phi + self.main_line.theta |
---|
| 125 | phimax = self.left_line.phi + self.main_line.theta |
---|
| 126 | |
---|
| 127 | mask = Sectorcut(phi_min= phimin, phi_max= phimax) |
---|
| 128 | |
---|
| 129 | if self.is_inside: |
---|
| 130 | out = (mask(data)==False) |
---|
| 131 | else: |
---|
| 132 | out = (mask(data)) |
---|
| 133 | #self.base.data.mask=out |
---|
| 134 | return out |
---|
| 135 | |
---|
| 136 | def moveend(self, ev): |
---|
| 137 | """ |
---|
[d955bf19] | 138 | Called a dragging motion ends.Get slicer event |
---|
[c5874f2] | 139 | """ |
---|
| 140 | self.base.thaw_axes() |
---|
| 141 | ## Post parameters |
---|
| 142 | event = SlicerParameterEvent() |
---|
| 143 | event.type = self.__class__.__name__ |
---|
| 144 | event.params = self.get_params() |
---|
| 145 | ## Send slicer paramers to plotter2D |
---|
| 146 | wx.PostEvent(self.base, event) |
---|
| 147 | self._post_data() |
---|
| 148 | |
---|
| 149 | |
---|
| 150 | def restore(self): |
---|
| 151 | """ |
---|
| 152 | Restore the roughness for this layer. |
---|
| 153 | """ |
---|
| 154 | self.main_line.restore() |
---|
| 155 | self.left_line.restore() |
---|
| 156 | self.right_line.restore() |
---|
| 157 | |
---|
| 158 | def move(self, x, y, ev): |
---|
| 159 | """ |
---|
| 160 | Process move to a new position, making sure that the move is allowed. |
---|
| 161 | """ |
---|
| 162 | pass |
---|
| 163 | |
---|
| 164 | |
---|
| 165 | def set_cursor(self, x, y): |
---|
| 166 | pass |
---|
| 167 | |
---|
| 168 | |
---|
| 169 | def get_params(self): |
---|
| 170 | """ |
---|
[d955bf19] | 171 | Store a copy of values of parameters of the slicer into a dictionary. |
---|
| 172 | |
---|
| 173 | :return params: the dictionary created |
---|
| 174 | |
---|
[c5874f2] | 175 | """ |
---|
| 176 | params = {} |
---|
| 177 | ## Always make sure that the left and the right line are at phi |
---|
| 178 | ## angle of the middle line |
---|
| 179 | if math.fabs(self.left_line.phi) != math.fabs(self.right_line.phi): |
---|
| 180 | raise ValueError,"Phi left and phi right are different %f, %f"%(self.left_line.phi, self.right_line.phi) |
---|
| 181 | |
---|
| 182 | params["Phi"] = self.main_line.theta |
---|
| 183 | params["Delta_Phi"] = math.fabs(self.left_line.phi) |
---|
| 184 | return params |
---|
| 185 | |
---|
| 186 | def set_params(self, params): |
---|
| 187 | """ |
---|
[d955bf19] | 188 | Receive a dictionary and reset the slicer with values contained |
---|
| 189 | in the values of the dictionary. |
---|
| 190 | |
---|
| 191 | :param params: a dictionary containing name of slicer parameters and |
---|
[c5874f2] | 192 | values the user assigned to the slicer. |
---|
| 193 | """ |
---|
| 194 | main = params["Phi"] |
---|
| 195 | phi = math.fabs(params["Delta_Phi"] ) |
---|
| 196 | |
---|
| 197 | self.main_line.theta= main |
---|
| 198 | ## Reset the slicer parameters |
---|
| 199 | self.main_line.update() |
---|
| 200 | self.right_line.update( phi=phi,delta=None, mline=self.main_line, |
---|
| 201 | side=True, right=True ) |
---|
| 202 | self.left_line.update( phi=phi, delta=None, mline=self.main_line, side=True ) |
---|
| 203 | ## post the new corresponding data |
---|
| 204 | self._post_data() |
---|
| 205 | |
---|
| 206 | def freeze_axes(self): |
---|
[d955bf19] | 207 | """ |
---|
| 208 | """ |
---|
[c5874f2] | 209 | self.base.freeze_axes() |
---|
| 210 | |
---|
| 211 | def thaw_axes(self): |
---|
[d955bf19] | 212 | """ |
---|
| 213 | """ |
---|
[c5874f2] | 214 | self.base.thaw_axes() |
---|
| 215 | |
---|
| 216 | def draw(self): |
---|
[d955bf19] | 217 | """ |
---|
| 218 | """ |
---|
[c5874f2] | 219 | self.base.update() |
---|
| 220 | |
---|