source: sasview/invariantview/perspectives/invariant/invariant.py @ 6d55d81

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 6d55d81 was 6d55d81, checked in by Gervaise Alina <gervyh@…>, 14 years ago

make sure the data is updated when the scale change

  • Property mode set to 100644
File size: 8.6 KB
Line 
1"""
2This software was developed by the University of Tennessee as part of the
3Distributed Data Analysis of Neutron Scattering Experiments (DANSE)
4project funded by the US National Science Foundation.
5
6See the license text in license.txt
7
8copyright 2009, University of Tennessee
9"""
10import wx
11
12from sans.invariant import invariant
13
14from DataLoader.data_info import Data1D as LoaderData1D
15from sans.guiframe.dataFitting import Theory1D, Data1D
16
17from sans.guicomm.events import NewPlotEvent, StatusEvent
18from sans.guicomm.events import ERR_DATA
19class Plugin:
20    """
21        This class defines the interface for invariant Plugin class
22        that can be used by the gui_manager.
23         
24    """
25   
26    def __init__(self, standalone=False):
27        """
28            Abstract class for gui_manager Plugins.
29        """
30        ## Plug-in name. It will appear on the application menu.
31        self.sub_menu = "Invariant"
32       
33        ## Reference to the parent window. Filled by get_panels() below.
34        self.parent = None
35        #dictionary containing data name and error on dy of that data
36        self.err_dy = {}
37        ## List of panels that you would like to open in AUI windows
38        #  for your plug-in. This defines your plug-in "perspective"
39        self.perspective = []
40       
41    def populate_menu(self, id, parent):
42        """
43            Create and return the list of application menu
44            items for the plug-in.
45           
46            @param id: deprecated. Un-used.
47            @param parent: parent window
48            @return: plug-in menu
49        """
50        return []
51   
52    def help(self, evt):
53        """
54            Show a general help dialog.
55            TODO: replace the text with a nice image
56            provide more hint on the SLD calculator
57        """
58        from help_panel import  HelpWindow
59        frame = HelpWindow(None, -1)   
60        frame.Show(True)
61       
62    def get_panels(self, parent):
63        """
64            Create and return the list of wx.Panels for your plug-in.
65            Define the plug-in perspective.
66           
67            Panels should inherit from DefaultPanel defined below,
68            or should present the same interface. They must define
69            "window_caption" and "window_name".
70           
71            @param parent: parent window
72            @return: list of panels
73        """
74        ## Save a reference to the parent
75        self.parent = parent
76        #add error back to the data
77        self.parent.Bind(ERR_DATA, self._on_data_error)
78        from invariant_panel import InvariantPanel
79        self.invariant_panel = InvariantPanel(parent=self.parent)
80        self.invariant_panel.set_manager(manager=self)
81        self.perspective.append(self.invariant_panel.window_name)   
82        # Return the list of panels
83        return [self.invariant_panel]
84   
85    def get_tools(self):
86        """
87            Returns a set of menu entries for tools
88        """
89        return []
90       
91   
92    def get_context_menu(self, graph=None):
93        """
94            This method is optional.
95       
96            When the context menu of a plot is rendered, the
97            get_context_menu method will be called to give you a
98            chance to add a menu item to the context menu.
99           
100            A ref to a Graph object is passed so that you can
101            investigate the plot content and decide whether you
102            need to add items to the context menu. 
103           
104            This method returns a list of menu items.
105            Each item is itself a list defining the text to
106            appear in the menu, a tool-tip help text, and a
107            call-back method.
108           
109            @param graph: the Graph object to which we attach the context menu
110            @return: a list of menu items with call-back function
111        """
112        self.graph = graph
113        invariant_option = "Compute invariant"
114        invariant_hint = "Will displays the invariant panel for futher computation"
115       
116        for item in self.graph.plottables:
117            if item.name == graph.selected_plottable :
118                if issubclass(item.__class__,LoaderData1D):
119           
120                    if item.name !="$I_{obs}(q)$" and item.name !="$P_{fit}(r)$":
121                        if hasattr(item, "group_id"):
122                            return [[invariant_option, 
123                                        invariant_hint, self._compute_invariant]]
124        return []   
125
126   
127    def get_perspective(self):
128        """
129            Get the list of panel names for this perspective
130        """
131        return self.perspective
132   
133    def on_perspective(self, event):
134        """
135            Call back function for the perspective menu item.
136            We notify the parent window that the perspective
137            has changed.
138            @param event: menu event
139        """
140        self.parent.set_perspective(self.perspective)
141   
142    def post_init(self):
143        """
144            Post initialization call back to close the loose ends
145        """
146        pass
147   
148    def set_default_perspective(self):
149        """
150           Call back method that True to notify the parent that the current plug-in
151           can be set as default  perspective.
152           when returning False, the plug-in is not candidate for an automatic
153           default perspective setting
154        """
155        return False
156   
157    def copy_data(self, item, dy=None):
158        """
159            receive a data 1D and the list of errors on dy
160            and create a new data1D data
161            @param return
162        """
163        id = None
164        if hasattr(item,"id"):
165            id = item.id
166
167        data = Data1D(x=item.x, y=item.y, dx=None, dy=None)
168        data.copy_from_datainfo(item)
169        item.clone_without_data(clone=data)   
170        data.dy = dy
171        data.name = item.name
172        ## allow to highlight data when plotted
173        data.interactive = item.interactive
174        ## when 2 data have the same id override the 1 st plotted
175        data.id = id
176        data.group_id = item.group_id
177        return data
178   
179    def _on_data_error(self, event):
180        """
181            receives and event from plotting plu-gins to store the data name and
182            their errors of y coordinates for 1Data hide and show error
183        """
184        self.err_dy = event.err_dy
185       
186    def _compute_invariant(self, event):   
187        """
188            Open the invariant panel to invariant computation
189        """
190        self.panel = event.GetEventObject()
191        Plugin.on_perspective(self,event=event)
192        for plottable in self.panel.graph.plottables:
193            if plottable.name == self.panel.graph.selected_plottable:
194                ## put the errors values back to the model if the errors were hiden
195                ## before sending them to the fit engine
196                if len(self.err_dy)>0:
197                    dy = plottable.dy
198                    if plottable.name in  self.err_dy.iterkeys():
199                        dy = self.err_dy[plottable.name]
200                    data = self.copy_data(plottable, dy)
201                else:
202                    data = plottable
203                # Store reference to data
204                self.__data = data
205                # Set the data set to be user for invariant calculation
206                self.invariant_panel.set_data(data=data)
207       
208    def plot_theory(self, data=None, name=None):
209        """
210            Receive a data set and post a NewPlotEvent to parent.
211            @param data: extrapolated data to be plotted
212            @param name: Data's name to use for the legend
213        """
214        if data is None:
215            new_plot = Theory1D(x=[], y=[], dy=None)
216        else:
217            new_plot = Theory1D(x=data.x, y=data.y, dy=None)
218        new_plot.name = name
219        new_plot.xaxis(self.__data._xaxis, self.__data._xunit)
220        new_plot.yaxis(self.__data._yaxis, self.__data._yunit)
221        new_plot.group_id = self.__data.group_id
222        new_plot.id = self.__data.id + name
223        wx.PostEvent(self.parent, NewPlotEvent(plot=new_plot, title=self.__data.name))
224       
225    def plot_data(self, data):
226        """
227            replot the current data if the user enters a new scale or background
228        """
229        new_plot = self.copy_data(item=self.__data, dy=self.__data.dy)
230        new_plot.x = data.x
231        new_plot.y = data.y
232        new_plot.dx = data.dx
233        new_plot.dy = data.dy
234        wx.PostEvent(self.parent, NewPlotEvent(plot=new_plot, title=new_plot.name))
235       
Note: See TracBrowser for help on using the repository browser.