[c128284] | 1 | |
---|
| 2 | |
---|
[d7a39e5] | 3 | |
---|
| 4 | ################################################################################ |
---|
| 5 | #This software was developed by the University of Tennessee as part of the |
---|
| 6 | #Distributed Data Analysis of Neutron Scattering Experiments (DANSE) |
---|
| 7 | #project funded by the US National Science Foundation. |
---|
| 8 | # |
---|
| 9 | #See the license text in license.txt |
---|
| 10 | # |
---|
| 11 | #copyright 2009, University of Tennessee |
---|
| 12 | ################################################################################ |
---|
[4e1c362] | 13 | import os |
---|
| 14 | import sys |
---|
[272d91e] | 15 | import wx |
---|
[4e1c362] | 16 | import copy |
---|
| 17 | import logging, time |
---|
[c128284] | 18 | from sans.invariant import invariant |
---|
| 19 | |
---|
| 20 | from DataLoader.data_info import Data1D as LoaderData1D |
---|
| 21 | from sans.guiframe.dataFitting import Theory1D, Data1D |
---|
| 22 | |
---|
| 23 | from sans.guicomm.events import NewPlotEvent, StatusEvent |
---|
| 24 | from sans.guicomm.events import ERR_DATA |
---|
[4e1c362] | 25 | from invariant_state import Reader as reader |
---|
| 26 | from DataLoader.loader import Loader |
---|
| 27 | from invariant_panel import InvariantPanel |
---|
[d7a39e5] | 28 | |
---|
[c128284] | 29 | class Plugin: |
---|
| 30 | """ |
---|
[d7a39e5] | 31 | This class defines the interface for invariant Plugin class |
---|
[4e1c362] | 32 | that can be used by the gui_manager. |
---|
[c128284] | 33 | """ |
---|
| 34 | |
---|
| 35 | def __init__(self, standalone=False): |
---|
| 36 | """ |
---|
[d7a39e5] | 37 | Abstract class for gui_manager Plugins. |
---|
[c128284] | 38 | """ |
---|
| 39 | ## Plug-in name. It will appear on the application menu. |
---|
[53b6b74] | 40 | self.sub_menu = "Invariant" |
---|
[c128284] | 41 | |
---|
| 42 | ## Reference to the parent window. Filled by get_panels() below. |
---|
| 43 | self.parent = None |
---|
| 44 | #dictionary containing data name and error on dy of that data |
---|
| 45 | self.err_dy = {} |
---|
| 46 | ## List of panels that you would like to open in AUI windows |
---|
| 47 | # for your plug-in. This defines your plug-in "perspective" |
---|
| 48 | self.perspective = [] |
---|
[4e1c362] | 49 | |
---|
[9c1f463] | 50 | # is this data from *.inv file? |
---|
| 51 | self.is_state_data = False |
---|
| 52 | |
---|
[4e1c362] | 53 | self.state_reader = None |
---|
| 54 | """ |
---|
| 55 | # Create a CanSAS/Pr reader |
---|
| 56 | self.state_reader = Reader(self.set_state) |
---|
| 57 | l = Loader() |
---|
| 58 | l.associate_file_reader('.inv', self.state_reader) |
---|
| 59 | """ |
---|
| 60 | # Log startup |
---|
| 61 | logging.info("Invariant plug-in started") |
---|
[c128284] | 62 | |
---|
| 63 | def populate_menu(self, id, parent): |
---|
| 64 | """ |
---|
[d7a39e5] | 65 | Create and return the list of application menu |
---|
| 66 | items for the plug-in. |
---|
| 67 | |
---|
| 68 | :param id: deprecated. Un-used. |
---|
| 69 | :param parent: parent window |
---|
| 70 | |
---|
| 71 | :return: plug-in menu |
---|
[c128284] | 72 | """ |
---|
| 73 | return [] |
---|
| 74 | |
---|
[f29a433] | 75 | def help(self, evt): |
---|
| 76 | """ |
---|
[d7a39e5] | 77 | Show a general help dialog. |
---|
[f29a433] | 78 | """ |
---|
| 79 | from help_panel import HelpWindow |
---|
| 80 | frame = HelpWindow(None, -1) |
---|
| 81 | frame.Show(True) |
---|
| 82 | |
---|
[c128284] | 83 | def get_panels(self, parent): |
---|
| 84 | """ |
---|
[d7a39e5] | 85 | Create and return the list of wx.Panels for your plug-in. |
---|
| 86 | Define the plug-in perspective. |
---|
| 87 | |
---|
| 88 | Panels should inherit from DefaultPanel defined below, |
---|
| 89 | or should present the same interface. They must define |
---|
| 90 | "window_caption" and "window_name". |
---|
| 91 | |
---|
| 92 | :param parent: parent window |
---|
| 93 | |
---|
| 94 | :return: list of panels |
---|
[c128284] | 95 | """ |
---|
| 96 | ## Save a reference to the parent |
---|
| 97 | self.parent = parent |
---|
| 98 | #add error back to the data |
---|
[272d91e] | 99 | self.parent.Bind(ERR_DATA, self._on_data_error) |
---|
[4e1c362] | 100 | |
---|
| 101 | |
---|
[c128284] | 102 | self.invariant_panel = InvariantPanel(parent=self.parent) |
---|
| 103 | self.invariant_panel.set_manager(manager=self) |
---|
[4e1c362] | 104 | self.perspective.append(self.invariant_panel.window_name) |
---|
| 105 | #Create reader when fitting panel are created |
---|
| 106 | self.state_reader = reader(self.set_state) |
---|
| 107 | #append that reader to list of available reader |
---|
| 108 | loader = Loader() |
---|
| 109 | loader.associate_file_reader(".inv", self.state_reader) |
---|
[c128284] | 110 | # Return the list of panels |
---|
| 111 | return [self.invariant_panel] |
---|
| 112 | |
---|
| 113 | def get_tools(self): |
---|
| 114 | """ |
---|
[d7a39e5] | 115 | Returns a set of menu entries for tools |
---|
[c128284] | 116 | """ |
---|
| 117 | return [] |
---|
| 118 | |
---|
| 119 | |
---|
| 120 | def get_context_menu(self, graph=None): |
---|
| 121 | """ |
---|
[d7a39e5] | 122 | This method is optional. |
---|
| 123 | |
---|
| 124 | When the context menu of a plot is rendered, the |
---|
| 125 | get_context_menu method will be called to give you a |
---|
| 126 | chance to add a menu item to the context menu. |
---|
| 127 | |
---|
| 128 | A ref to a Graph object is passed so that you can |
---|
| 129 | investigate the plot content and decide whether you |
---|
| 130 | need to add items to the context menu. |
---|
| 131 | |
---|
| 132 | This method returns a list of menu items. |
---|
| 133 | Each item is itself a list defining the text to |
---|
| 134 | appear in the menu, a tool-tip help text, and a |
---|
| 135 | call-back method. |
---|
| 136 | |
---|
| 137 | :param graph: the Graph object to which we attach the context menu |
---|
| 138 | |
---|
| 139 | :return: a list of menu items with call-back function |
---|
[c128284] | 140 | """ |
---|
| 141 | self.graph = graph |
---|
| 142 | invariant_option = "Compute invariant" |
---|
| 143 | invariant_hint = "Will displays the invariant panel for futher computation" |
---|
| 144 | |
---|
| 145 | for item in self.graph.plottables: |
---|
[518d35d] | 146 | if item.name == graph.selected_plottable : |
---|
| 147 | if issubclass(item.__class__,LoaderData1D): |
---|
| 148 | |
---|
| 149 | if item.name !="$I_{obs}(q)$" and item.name !="$P_{fit}(r)$": |
---|
| 150 | if hasattr(item, "group_id"): |
---|
| 151 | return [[invariant_option, |
---|
| 152 | invariant_hint, self._compute_invariant]] |
---|
[c128284] | 153 | return [] |
---|
| 154 | |
---|
| 155 | |
---|
| 156 | def get_perspective(self): |
---|
| 157 | """ |
---|
[d7a39e5] | 158 | Get the list of panel names for this perspective |
---|
[c128284] | 159 | """ |
---|
| 160 | return self.perspective |
---|
| 161 | |
---|
| 162 | def on_perspective(self, event): |
---|
| 163 | """ |
---|
[d7a39e5] | 164 | Call back function for the perspective menu item. |
---|
| 165 | We notify the parent window that the perspective |
---|
| 166 | has changed. |
---|
| 167 | |
---|
| 168 | :param event: menu event |
---|
[c128284] | 169 | """ |
---|
| 170 | self.parent.set_perspective(self.perspective) |
---|
| 171 | |
---|
| 172 | def post_init(self): |
---|
| 173 | """ |
---|
[d7a39e5] | 174 | Post initialization call back to close the loose ends |
---|
[c128284] | 175 | """ |
---|
| 176 | pass |
---|
| 177 | |
---|
| 178 | def set_default_perspective(self): |
---|
| 179 | """ |
---|
[d7a39e5] | 180 | Call back method that True to notify the parent that the current plug-in |
---|
| 181 | can be set as default perspective. |
---|
| 182 | when returning False, the plug-in is not candidate for an automatic |
---|
| 183 | default perspective setting |
---|
[c128284] | 184 | """ |
---|
| 185 | return False |
---|
| 186 | |
---|
| 187 | def copy_data(self, item, dy=None): |
---|
| 188 | """ |
---|
[d7a39e5] | 189 | receive a data 1D and the list of errors on dy |
---|
| 190 | and create a new data1D data |
---|
[c128284] | 191 | """ |
---|
| 192 | id = None |
---|
| 193 | if hasattr(item,"id"): |
---|
[6d55d81] | 194 | id = item.id |
---|
[c128284] | 195 | |
---|
| 196 | data = Data1D(x=item.x, y=item.y, dx=None, dy=None) |
---|
| 197 | data.copy_from_datainfo(item) |
---|
| 198 | item.clone_without_data(clone=data) |
---|
| 199 | data.dy = dy |
---|
| 200 | data.name = item.name |
---|
[4e1c362] | 201 | |
---|
[c128284] | 202 | ## allow to highlight data when plotted |
---|
[6d55d81] | 203 | data.interactive = item.interactive |
---|
[c128284] | 204 | ## when 2 data have the same id override the 1 st plotted |
---|
| 205 | data.id = id |
---|
| 206 | data.group_id = item.group_id |
---|
| 207 | return data |
---|
| 208 | |
---|
| 209 | def _on_data_error(self, event): |
---|
| 210 | """ |
---|
[d7a39e5] | 211 | receives and event from plotting plu-gins to store the data name and |
---|
| 212 | their errors of y coordinates for 1Data hide and show error |
---|
[c128284] | 213 | """ |
---|
| 214 | self.err_dy = event.err_dy |
---|
| 215 | |
---|
| 216 | def _compute_invariant(self, event): |
---|
| 217 | """ |
---|
[d7a39e5] | 218 | Open the invariant panel to invariant computation |
---|
[c128284] | 219 | """ |
---|
| 220 | self.panel = event.GetEventObject() |
---|
| 221 | Plugin.on_perspective(self,event=event) |
---|
| 222 | for plottable in self.panel.graph.plottables: |
---|
| 223 | if plottable.name == self.panel.graph.selected_plottable: |
---|
| 224 | ## put the errors values back to the model if the errors were hiden |
---|
| 225 | ## before sending them to the fit engine |
---|
| 226 | if len(self.err_dy)>0: |
---|
| 227 | dy = plottable.dy |
---|
| 228 | if plottable.name in self.err_dy.iterkeys(): |
---|
| 229 | dy = self.err_dy[plottable.name] |
---|
| 230 | data = self.copy_data(plottable, dy) |
---|
| 231 | else: |
---|
| 232 | data = plottable |
---|
[343fdb6] | 233 | self.compute_helper(data=data) |
---|
[4e1c362] | 234 | |
---|
[343fdb6] | 235 | def compute_helper(self, data): |
---|
| 236 | """ |
---|
| 237 | """ |
---|
| 238 | if data is None: |
---|
| 239 | return |
---|
[9c1f463] | 240 | if self.is_state_data: |
---|
| 241 | self.is_state_data = False |
---|
| 242 | else: |
---|
| 243 | # Store reference to data |
---|
| 244 | self.__data = data |
---|
| 245 | # Set the data set to be user for invariant calculation |
---|
| 246 | self.invariant_panel.set_current_data(data=data) |
---|
[343fdb6] | 247 | |
---|
[4e1c362] | 248 | def save_file(self, filepath, state=None): |
---|
| 249 | """ |
---|
| 250 | Save data in provided state object. |
---|
| 251 | |
---|
| 252 | :param filepath: path of file to write to |
---|
| 253 | :param state: invariant state |
---|
| 254 | """ |
---|
| 255 | |
---|
| 256 | # Write the state to file |
---|
| 257 | # First, check that the data is of the right type |
---|
| 258 | |
---|
| 259 | current_plottable = self.__data |
---|
| 260 | |
---|
| 261 | if issubclass(current_plottable.__class__, LoaderData1D): |
---|
| 262 | self.state_reader.write(filepath, current_plottable, state) |
---|
| 263 | else: |
---|
| 264 | raise RuntimeError, "invariant.save_file: the data being saved is not a DataLoader.data_info.Data1D object" |
---|
| 265 | |
---|
| 266 | def set_state(self, state, datainfo=None): |
---|
| 267 | """ |
---|
| 268 | Call-back method for the state reader. |
---|
| 269 | This method is called when a .inv file is loaded. |
---|
| 270 | |
---|
| 271 | :param state: State object |
---|
| 272 | """ |
---|
| 273 | try: |
---|
| 274 | if datainfo is None: |
---|
| 275 | raise RuntimeError, "invariant.set_state: datainfo parameter cannot be None in standalone mode" |
---|
[cb463b4] | 276 | datainfo.meta_data['invstate'].file = datainfo.meta_data['invstate'].file |
---|
[4e1c362] | 277 | datainfo.name = datainfo.meta_data['invstate'].file |
---|
| 278 | datainfo.filename = datainfo.meta_data['invstate'].file |
---|
| 279 | self.__data = datainfo |
---|
| 280 | self.__data.group_id = datainfo.filename |
---|
| 281 | self.__data.id = datainfo.filename |
---|
| 282 | |
---|
| 283 | temp_state = copy.deepcopy(state) |
---|
| 284 | |
---|
| 285 | # Load the invariant states |
---|
| 286 | # Make sure the user sees the invariant panel after loading |
---|
| 287 | self.parent.set_perspective(self.perspective) |
---|
| 288 | # set state |
---|
[9c1f463] | 289 | self.invariant_panel.set_state(state=temp_state,data=self.__data) |
---|
| 290 | self.is_state_data = True |
---|
[4e1c362] | 291 | |
---|
| 292 | except: |
---|
| 293 | logging.error("invariant.set_state: %s" % sys.exc_value) |
---|
| 294 | |
---|
| 295 | |
---|
[c128284] | 296 | |
---|
[2661d8b] | 297 | def plot_theory(self, data=None, name=None): |
---|
[c128284] | 298 | """ |
---|
[d7a39e5] | 299 | Receive a data set and post a NewPlotEvent to parent. |
---|
| 300 | |
---|
| 301 | :param data: extrapolated data to be plotted |
---|
| 302 | :param name: Data's name to use for the legend |
---|
[c128284] | 303 | """ |
---|
[4e1c362] | 304 | import copy |
---|
[2661d8b] | 305 | if data is None: |
---|
| 306 | new_plot = Theory1D(x=[], y=[], dy=None) |
---|
| 307 | else: |
---|
[353f467] | 308 | scale =self.invariant_panel.get_scale() |
---|
| 309 | background = self.invariant_panel.get_background() |
---|
| 310 | |
---|
| 311 | if scale != 0: |
---|
| 312 | # Put back the sacle and bkg for plotting |
---|
[8f2069d5] | 313 | data.y = (data.y + background)/scale |
---|
[353f467] | 314 | new_plot = Theory1D(x=data.x, y=data.y, dy=None) |
---|
| 315 | else: |
---|
| 316 | msg = "Scale can not be zero." |
---|
| 317 | raise ValueError, msg |
---|
| 318 | |
---|
[c128284] | 319 | new_plot.name = name |
---|
[2661d8b] | 320 | new_plot.xaxis(self.__data._xaxis, self.__data._xunit) |
---|
| 321 | new_plot.yaxis(self.__data._yaxis, self.__data._yunit) |
---|
| 322 | new_plot.group_id = self.__data.group_id |
---|
| 323 | new_plot.id = self.__data.id + name |
---|
[4e1c362] | 324 | # Save theory_data in a state |
---|
| 325 | if data != None: |
---|
| 326 | name_head = name.split('-') |
---|
| 327 | if name_head[0]=='Low': |
---|
| 328 | self.invariant_panel.state.theory_lowQ = copy.deepcopy(new_plot) |
---|
| 329 | elif name_head[0]=='High': |
---|
| 330 | self.invariant_panel.state.theory_highQ = copy.deepcopy(new_plot) |
---|
| 331 | |
---|
[2661d8b] | 332 | wx.PostEvent(self.parent, NewPlotEvent(plot=new_plot, title=self.__data.name)) |
---|
[6d55d81] | 333 | |
---|
[18d0bba] | 334 | def plot_data(self, scale, background): |
---|
[6d55d81] | 335 | """ |
---|
[d7a39e5] | 336 | replot the current data if the user enters a new scale or background |
---|
[6d55d81] | 337 | """ |
---|
[18d0bba] | 338 | new_plot = scale * self.__data - background |
---|
| 339 | new_plot.name = self.__data.name |
---|
| 340 | new_plot.group_id = self.__data.group_id |
---|
| 341 | new_plot.id = self.__data.id |
---|
[4e1c362] | 342 | |
---|
| 343 | # Save data in a state: but seems to never happen |
---|
| 344 | if new_plot != None: |
---|
| 345 | self.invariant_panel.state.data = copy.deepcopy(new_plot) |
---|
[6d55d81] | 346 | wx.PostEvent(self.parent, NewPlotEvent(plot=new_plot, title=new_plot.name)) |
---|
[c128284] | 347 | |
---|