source: sasview/src/sas/qtgui/Perspectives/Inversion/InversionPerspective.py @ 34cf92c

ESS_GUIESS_GUI_batch_fittingESS_GUI_bumps_abstractionESS_GUI_iss1116ESS_GUI_openclESS_GUI_orderingESS_GUI_sync_sascalc
Last change on this file since 34cf92c was 34cf92c, checked in by wojciech, 6 years ago

Dynamic text edit logic introduced

  • Property mode set to 100644
File size: 34.3 KB
Line 
1import logging
2import numpy as np
3
4from PyQt5 import QtGui, QtCore, QtWidgets
5
6# sas-global
7import sas.qtgui.Utilities.GuiUtils as GuiUtils
8
9# pr inversion GUI elements
10from .InversionUtils import WIDGETS
11from .UI.TabbedInversionUI import Ui_PrInversion
12from .InversionLogic import InversionLogic
13
14# pr inversion calculation elements
15from sas.sascalc.pr.invertor import Invertor
16# Batch calculation display
17from sas.qtgui.Utilities.GridPanel import BatchInversionOutputPanel
18
19
20def is_float(value):
21    """Converts text input values to floats. Empty strings throw ValueError"""
22    try:
23        return float(value)
24    except ValueError:
25        return 0.0
26
27
28NUMBER_OF_TERMS = 10
29REGULARIZATION = 0.0001
30BACKGROUND_INPUT = 0.0
31MAX_DIST = 140.0
32DICT_KEYS = ["Calculator", "PrPlot", "DataPlot"]
33
34logger = logging.getLogger(__name__)
35
36
37class InversionWindow(QtWidgets.QDialog, Ui_PrInversion):
38    """
39    The main window for the P(r) Inversion perspective.
40    """
41
42    name = "Inversion"
43    estimateSignal = QtCore.pyqtSignal(tuple)
44    estimateNTSignal = QtCore.pyqtSignal(tuple)
45    estimateDynamicNTSignal = QtCore.pyqtSignal(tuple)
46    estimateDynamicSignal = QtCore.pyqtSignal(tuple)
47    calculateSignal = QtCore.pyqtSignal(tuple)
48
49    def __init__(self, parent=None, data=None):
50        super(InversionWindow, self).__init__()
51        self.setupUi(self)
52
53        self.setWindowTitle("P(r) Inversion Perspective")
54
55        self._manager = parent
56        self.communicate = parent.communicator()
57        self.communicate.dataDeletedSignal.connect(self.removeData)
58
59        self.logic = InversionLogic()
60
61        # The window should not close
62        self._allowClose = False
63
64        # Visible data items
65        # current QStandardItem showing on the panel
66        self._data = None
67        # Reference to Dmax window for self._data
68        self.dmaxWindow = None
69        # p(r) calculator for self._data
70        self._calculator = Invertor()
71        # Default to background estimate
72        self._calculator.est_bck = True
73        # plots of self._data
74        self.prPlot = None
75        self.dataPlot = None
76        # suggested nTerms
77        self.nTermsSuggested = NUMBER_OF_TERMS
78
79        # Calculation threads used by all data items
80        self.calcThread = None
81        self.estimationThread = None
82        self.estimationThreadNT = None
83        self.isCalculating = False
84
85        # Mapping for all data items
86        # Dictionary mapping data to all parameters
87        self._dataList = {}
88        if not isinstance(data, list):
89            data_list = [data]
90        if data is not None:
91            for datum in data_list:
92                self.updateDataList(datum)
93
94        self.dataDeleted = False
95
96        self.model = QtGui.QStandardItemModel(self)
97        self.mapper = QtWidgets.QDataWidgetMapper(self)
98
99        # Batch fitting parameters
100        self.isBatch = False
101        self.batchResultsWindow = None
102        self.batchResults = {}
103        self.batchComplete = []
104
105        # Add validators
106        self.setupValidators()
107        # Link user interactions with methods
108        self.setupLinks()
109        # Set values
110        self.setupModel()
111        # Set up the Widget Map
112        self.setupMapper()
113        # Set base window state
114        self.setupWindow()
115
116    ######################################################################
117    # Base Perspective Class Definitions
118
119    def communicator(self):
120        return self.communicate
121
122    def allowBatch(self):
123        return True
124
125    def setClosable(self, value=True):
126        """
127        Allow outsiders close this widget
128        """
129        assert isinstance(value, bool)
130        self._allowClose = value
131
132    def isClosable(self):
133        """
134        Allow outsiders close this widget
135        """
136        return self._allowClose
137
138    def closeEvent(self, event):
139        """
140        Overwrite QDialog close method to allow for custom widget close
141        """
142        # Close report widgets before closing/minimizing main widget
143        self.closeDMax()
144        self.closeBatchResults()
145        if self._allowClose:
146            # reset the closability flag
147            self.setClosable(value=False)
148            # Tell the MdiArea to close the container
149            self.parentWidget().close()
150            event.accept()
151        else:
152            event.ignore()
153            # Maybe we should just minimize
154            self.setWindowState(QtCore.Qt.WindowMinimized)
155
156    def closeDMax(self):
157        if self.dmaxWindow is not None:
158            self.dmaxWindow.close()
159
160    def closeBatchResults(self):
161        if self.batchResultsWindow is not None:
162            self.batchResultsWindow.close()
163
164    ######################################################################
165    # Initialization routines
166
167    def setupLinks(self):
168        """Connect the use controls to their appropriate methods"""
169        self.dataList.currentIndexChanged.connect(self.displayChange)
170        self.calculateAllButton.clicked.connect(self.startThreadAll)
171        self.calculateThisButton.clicked.connect(self.startThread)
172        self.stopButton.clicked.connect(self.stopCalculation)
173        self.removeButton.clicked.connect(self.removeData)
174        self.helpButton.clicked.connect(self.help)
175        self.estimateBgd.toggled.connect(self.toggleBgd)
176        self.manualBgd.toggled.connect(self.toggleBgd)
177        self.regConstantSuggestionButton.clicked.connect(self.acceptAlpha)
178        self.noOfTermsSuggestionButton.clicked.connect(self.acceptNoTerms)
179        self.explorerButton.clicked.connect(self.openExplorerWindow)
180
181        self.backgroundInput.textChanged.connect(
182            lambda: self.set_background(self.backgroundInput.text()))
183        self.minQInput.textChanged.connect(
184            lambda: self._calculator.set_qmin(is_float(self.minQInput.text())))
185        self.regularizationConstantInput.textChanged.connect(
186            lambda: self._calculator.set_alpha(is_float(self.regularizationConstantInput.text())))
187        self.maxDistanceInput.textChanged.connect(
188            lambda: self._calculator.set_dmax(is_float(self.maxDistanceInput.text())))
189        self.maxQInput.textChanged.connect(
190            lambda: self._calculator.set_qmax(is_float(self.maxQInput.text())))
191        self.slitHeightInput.textChanged.connect(
192            lambda: self._calculator.set_slit_height(is_float(self.slitHeightInput.text())))
193        self.slitWidthInput.textChanged.connect(
194            lambda: self._calculator.set_slit_width(is_float(self.slitWidthInput.text())))
195
196        self.model.itemChanged.connect(self.model_changed)
197        self.estimateNTSignal.connect(self._estimateNTUpdate)
198        self.estimateDynamicNTSignal.connect(self._estimateDynamicNTUpdate)
199        self.estimateDynamicSignal.connect(self._estimateDynamicUpdate)
200        self.estimateSignal.connect(self._estimateUpdate)
201        self.calculateSignal.connect(self._calculateUpdate)
202
203        self.maxDistanceInput.textEdited.connect(self.performEstimateDynamic)
204
205    def setupMapper(self):
206        # Set up the mapper.
207        self.mapper.setOrientation(QtCore.Qt.Vertical)
208        self.mapper.setModel(self.model)
209
210        # Filename
211        self.mapper.addMapping(self.dataList, WIDGETS.W_FILENAME)
212        # Background
213        self.mapper.addMapping(self.backgroundInput, WIDGETS.W_BACKGROUND_INPUT)
214        self.mapper.addMapping(self.estimateBgd, WIDGETS.W_ESTIMATE)
215        self.mapper.addMapping(self.manualBgd, WIDGETS.W_MANUAL_INPUT)
216
217        # Qmin/Qmax
218        self.mapper.addMapping(self.minQInput, WIDGETS.W_QMIN)
219        self.mapper.addMapping(self.maxQInput, WIDGETS.W_QMAX)
220
221        # Slit Parameter items
222        self.mapper.addMapping(self.slitWidthInput, WIDGETS.W_SLIT_WIDTH)
223        self.mapper.addMapping(self.slitHeightInput, WIDGETS.W_SLIT_HEIGHT)
224
225        # Parameter Items
226        self.mapper.addMapping(self.regularizationConstantInput, WIDGETS.W_REGULARIZATION)
227        self.mapper.addMapping(self.regConstantSuggestionButton, WIDGETS.W_REGULARIZATION_SUGGEST)
228        self.mapper.addMapping(self.explorerButton, WIDGETS.W_EXPLORE)
229        self.mapper.addMapping(self.maxDistanceInput, WIDGETS.W_MAX_DIST)
230        self.mapper.addMapping(self.noOfTermsInput, WIDGETS.W_NO_TERMS)
231        self.mapper.addMapping(self.noOfTermsSuggestionButton, WIDGETS.W_NO_TERMS_SUGGEST)
232
233        # Output
234        self.mapper.addMapping(self.rgValue, WIDGETS.W_RG)
235        self.mapper.addMapping(self.iQ0Value, WIDGETS.W_I_ZERO)
236        self.mapper.addMapping(self.backgroundValue, WIDGETS.W_BACKGROUND_OUTPUT)
237        self.mapper.addMapping(self.computationTimeValue, WIDGETS.W_COMP_TIME)
238        self.mapper.addMapping(self.chiDofValue, WIDGETS.W_CHI_SQUARED)
239        self.mapper.addMapping(self.oscillationValue, WIDGETS.W_OSCILLATION)
240        self.mapper.addMapping(self.posFractionValue, WIDGETS.W_POS_FRACTION)
241        self.mapper.addMapping(self.sigmaPosFractionValue, WIDGETS.W_SIGMA_POS_FRACTION)
242
243        # Main Buttons
244        self.mapper.addMapping(self.removeButton, WIDGETS.W_REMOVE)
245        self.mapper.addMapping(self.calculateAllButton, WIDGETS.W_CALCULATE_ALL)
246        self.mapper.addMapping(self.calculateThisButton, WIDGETS.W_CALCULATE_VISIBLE)
247        self.mapper.addMapping(self.helpButton, WIDGETS.W_HELP)
248
249        self.mapper.toFirst()
250
251    def setupModel(self):
252        """
253        Update boxes with initial values
254        """
255        bgd_item = QtGui.QStandardItem(str(BACKGROUND_INPUT))
256        self.model.setItem(WIDGETS.W_BACKGROUND_INPUT, bgd_item)
257        blank_item = QtGui.QStandardItem("")
258        self.model.setItem(WIDGETS.W_QMIN, blank_item)
259        blank_item = QtGui.QStandardItem("")
260        self.model.setItem(WIDGETS.W_QMAX, blank_item)
261        blank_item = QtGui.QStandardItem("")
262        self.model.setItem(WIDGETS.W_SLIT_WIDTH, blank_item)
263        blank_item = QtGui.QStandardItem("")
264        self.model.setItem(WIDGETS.W_SLIT_HEIGHT, blank_item)
265        no_terms_item = QtGui.QStandardItem(str(NUMBER_OF_TERMS))
266        self.model.setItem(WIDGETS.W_NO_TERMS, no_terms_item)
267        reg_item = QtGui.QStandardItem(str(REGULARIZATION))
268        self.model.setItem(WIDGETS.W_REGULARIZATION, reg_item)
269        max_dist_item = QtGui.QStandardItem(str(MAX_DIST))
270        self.model.setItem(WIDGETS.W_MAX_DIST, max_dist_item)
271        blank_item = QtGui.QStandardItem("")
272        self.model.setItem(WIDGETS.W_RG, blank_item)
273        blank_item = QtGui.QStandardItem("")
274        self.model.setItem(WIDGETS.W_I_ZERO, blank_item)
275        bgd_item = QtGui.QStandardItem(str(BACKGROUND_INPUT))
276        self.model.setItem(WIDGETS.W_BACKGROUND_OUTPUT, bgd_item)
277        blank_item = QtGui.QStandardItem("")
278        self.model.setItem(WIDGETS.W_COMP_TIME, blank_item)
279        blank_item = QtGui.QStandardItem("")
280        self.model.setItem(WIDGETS.W_CHI_SQUARED, blank_item)
281        blank_item = QtGui.QStandardItem("")
282        self.model.setItem(WIDGETS.W_OSCILLATION, blank_item)
283        blank_item = QtGui.QStandardItem("")
284        self.model.setItem(WIDGETS.W_POS_FRACTION, blank_item)
285        blank_item = QtGui.QStandardItem("")
286        self.model.setItem(WIDGETS.W_SIGMA_POS_FRACTION, blank_item)
287
288    def setupWindow(self):
289        """Initialize base window state on init"""
290        self.enableButtons()
291        self.estimateBgd.setChecked(True)
292
293    def setupValidators(self):
294        """Apply validators to editable line edits"""
295        self.noOfTermsInput.setValidator(QtGui.QIntValidator())
296        self.regularizationConstantInput.setValidator(GuiUtils.DoubleValidator())
297        self.maxDistanceInput.setValidator(GuiUtils.DoubleValidator())
298        self.minQInput.setValidator(GuiUtils.DoubleValidator())
299        self.maxQInput.setValidator(GuiUtils.DoubleValidator())
300        self.slitHeightInput.setValidator(GuiUtils.DoubleValidator())
301        self.slitWidthInput.setValidator(GuiUtils.DoubleValidator())
302
303    ######################################################################
304    # Methods for updating GUI
305
306    def enableButtons(self):
307        """
308        Enable buttons when data is present, else disable them
309        """
310        self.calculateAllButton.setEnabled(len(self._dataList) > 1
311                                           and not self.isBatch
312                                           and not self.isCalculating)
313        self.calculateThisButton.setEnabled(self.logic.data_is_loaded
314                                            and not self.isBatch
315                                            and not self.isCalculating)
316        self.removeButton.setEnabled(self.logic.data_is_loaded)
317        self.explorerButton.setEnabled(self.logic.data_is_loaded)
318        self.stopButton.setVisible(self.isCalculating)
319        self.regConstantSuggestionButton.setEnabled(
320            self.logic.data_is_loaded and
321            self._calculator.suggested_alpha != self._calculator.alpha)
322        self.noOfTermsSuggestionButton.setEnabled(
323            self.logic.data_is_loaded and
324            self._calculator.nfunc != self.nTermsSuggested)
325
326    def populateDataComboBox(self, filename, data_ref):
327        """
328        Append a new file name to the data combobox
329        :param filename: data filename
330        :param data_ref: QStandardItem reference for data set to be added
331        """
332        self.dataList.addItem(filename, data_ref)
333
334    def acceptNoTerms(self):
335        """Send estimated no of terms to input"""
336        self.model.setItem(WIDGETS.W_NO_TERMS, QtGui.QStandardItem(
337            self.noOfTermsSuggestionButton.text()))
338
339    def acceptAlpha(self):
340        """Send estimated alpha to input"""
341        self.model.setItem(WIDGETS.W_REGULARIZATION, QtGui.QStandardItem(
342            self.regConstantSuggestionButton.text()))
343
344    def displayChange(self, data_index=0):
345        """Switch to another item in the data list"""
346        if self.dataDeleted:
347            return
348        self.updateDataList(self._data)
349        self.setCurrentData(self.dataList.itemData(data_index))
350
351    ######################################################################
352    # GUI Interaction Events
353
354    def updateCalculator(self):
355        """Update all p(r) params"""
356        self._calculator.set_x(self.logic.data.x)
357        self._calculator.set_y(self.logic.data.y)
358        self._calculator.set_err(self.logic.data.dy)
359        self.set_background(self.backgroundInput.text())
360
361    def set_background(self, value):
362        self._calculator.background = is_float(value)
363
364    def model_changed(self):
365        """Update the values when user makes changes"""
366        if not self.mapper:
367            msg = "Unable to update P{r}. The connection between the main GUI "
368            msg += "and P(r) was severed. Attempting to restart P(r)."
369            logger.warning(msg)
370            self.setClosable(True)
371            self.close()
372            InversionWindow.__init__(self.parent(), list(self._dataList.keys()))
373            exit(0)
374        if self.dmaxWindow is not None:
375            self.dmaxWindow.nfunc = self.getNFunc()
376            self.dmaxWindow.pr_state = self._calculator
377        self.mapper.toLast()
378
379    def help(self):
380        """
381        Open the P(r) Inversion help browser
382        """
383        tree_location = "/user/qtgui/Perspectives/Inversion/pr_help.html"
384
385        # Actual file anchor will depend on the combo box index
386        # Note that we can be clusmy here, since bad current_fitter_id
387        # will just make the page displayed from the top
388        self._manager.showHelp(tree_location)
389
390    def toggleBgd(self):
391        """
392        Toggle the background between manual and estimated
393        """
394        if self.estimateBgd.isChecked():
395            self.manualBgd.setChecked(False)
396            self.backgroundInput.setEnabled(False)
397            self._calculator.set_est_bck = True
398        elif self.manualBgd.isChecked():
399            self.estimateBgd.setChecked(False)
400            self.backgroundInput.setEnabled(True)
401            self._calculator.set_est_bck = False
402        else:
403            pass
404
405    def openExplorerWindow(self):
406        """
407        Open the Explorer window to see correlations between params and results
408        """
409        from .DMaxExplorerWidget import DmaxWindow
410        self.dmaxWindow = DmaxWindow(pr_state=self._calculator,
411                                     nfunc=self.getNFunc(),
412                                     parent=self)
413        self.dmaxWindow.show()
414
415    def showBatchOutput(self):
416        """
417        Display the batch output in tabular form
418        :param output_data: Dictionary mapping filename -> P(r) instance
419        """
420        if self.batchResultsWindow is None:
421            self.batchResultsWindow = BatchInversionOutputPanel(
422                parent=self, output_data=self.batchResults)
423        else:
424            self.batchResultsWindow.setupTable(self.batchResults)
425        self.batchResultsWindow.show()
426
427    def stopCalculation(self):
428        """ Stop all threads, return to the base state and update GUI """
429        self.stopCalcThread()
430        self.stopEstimationThread()
431        self.stopEstimateNTThread()
432        # Show any batch calculations that successfully completed
433        if self.isBatch and self.batchResultsWindow is not None:
434            self.showBatchOutput()
435        self.isBatch = False
436        self.isCalculating = False
437        self.updateGuiValues()
438
439    ######################################################################
440    # Response Actions
441
442    def setData(self, data_item=None, is_batch=False):
443        """
444        Assign new data set(s) to the P(r) perspective
445        Obtain a QStandardItem object and parse it to get Data1D/2D
446        Pass it over to the calculator
447        """
448        assert data_item is not None
449
450        if not isinstance(data_item, list):
451            msg = "Incorrect type passed to the P(r) Perspective"
452            raise AttributeError(msg)
453
454        for data in data_item:
455            if data in self._dataList.keys():
456                # Don't add data if it's already in
457                continue
458            # Create initial internal mappings
459            self.logic.data = GuiUtils.dataFromItem(data)
460            # Estimate q range
461            qmin, qmax = self.logic.computeDataRange()
462            self._calculator.set_qmin(qmin)
463            self._calculator.set_qmax(qmax)
464            self.updateDataList(data)
465            self.populateDataComboBox(self.logic.data.filename, data)
466        self.dataList.setCurrentIndex(len(self.dataList) - 1)
467        self.setCurrentData(data)
468
469    def updateDataList(self, dataRef):
470        """Save the current data state of the window into self._data_list"""
471        if dataRef is None:
472            return
473        self._dataList[dataRef] = {
474            DICT_KEYS[0]: self._calculator,
475            DICT_KEYS[1]: self.prPlot,
476            DICT_KEYS[2]: self.dataPlot
477        }
478        # Update batch results window when finished
479        self.batchResults[self.logic.data.filename] = self._calculator
480        if self.batchResultsWindow is not None:
481            self.showBatchOutput()
482
483    def getNFunc(self):
484        """Get the n_func value from the GUI object"""
485        try:
486            nfunc = int(self.noOfTermsInput.text())
487        except ValueError:
488            logger.error("Incorrect number of terms specified: %s"
489                          %self.noOfTermsInput.text())
490            self.noOfTermsInput.setText(str(NUMBER_OF_TERMS))
491            nfunc = NUMBER_OF_TERMS
492        return nfunc
493
494    def setCurrentData(self, data_ref):
495        """Get the data by reference and display as necessary"""
496        if data_ref is None:
497            return
498        if not isinstance(data_ref, QtGui.QStandardItem):
499            msg = "Incorrect type passed to the P(r) Perspective"
500            raise AttributeError(msg)
501        # Data references
502        self._data = data_ref
503        self.logic.data = GuiUtils.dataFromItem(data_ref)
504        self._calculator = self._dataList[data_ref].get(DICT_KEYS[0])
505        self.prPlot = self._dataList[data_ref].get(DICT_KEYS[1])
506        self.dataPlot = self._dataList[data_ref].get(DICT_KEYS[2])
507        self.performEstimate()
508
509    def updateDynamicGuiValues(self):
510        pr = self._calculator
511        alpha = self._calculator.suggested_alpha
512        self.model.setItem(WIDGETS.W_MAX_DIST,
513                            QtGui.QStandardItem("{:.4g}".format(pr.get_dmax())))
514        self.regConstantSuggestionButton.setText("{:-3.2g}".format(alpha))
515        self.noOfTermsSuggestionButton.setText(
516             "{:n}".format(self.nTermsSuggested))
517
518        self.enableButtons()
519
520    def updateGuiValues(self):
521        pr = self._calculator
522        out = self._calculator.out
523        cov = self._calculator.cov
524        elapsed = self._calculator.elapsed
525        alpha = self._calculator.suggested_alpha
526        self.model.setItem(WIDGETS.W_QMIN,
527                           QtGui.QStandardItem("{:.4g}".format(pr.get_qmin())))
528        self.model.setItem(WIDGETS.W_QMAX,
529                           QtGui.QStandardItem("{:.4g}".format(pr.get_qmax())))
530        self.model.setItem(WIDGETS.W_BACKGROUND_INPUT,
531                           QtGui.QStandardItem("{:.3g}".format(pr.background)))
532        self.model.setItem(WIDGETS.W_BACKGROUND_OUTPUT,
533                           QtGui.QStandardItem("{:.3g}".format(pr.background)))
534        self.model.setItem(WIDGETS.W_COMP_TIME,
535                           QtGui.QStandardItem("{:.4g}".format(elapsed)))
536        self.model.setItem(WIDGETS.W_MAX_DIST,
537                           QtGui.QStandardItem("{:.4g}".format(pr.get_dmax())))
538        self.regConstantSuggestionButton.setText("{:-3.2g}".format(alpha))
539        self.noOfTermsSuggestionButton.setText(
540            "{:n}".format(self.nTermsSuggested))
541
542        if isinstance(pr.chi2, np.ndarray):
543            self.model.setItem(WIDGETS.W_CHI_SQUARED,
544                               QtGui.QStandardItem("{:.3g}".format(pr.chi2[0])))
545        if out is not None:
546            self.model.setItem(WIDGETS.W_RG,
547                               QtGui.QStandardItem("{:.3g}".format(pr.rg(out))))
548            self.model.setItem(WIDGETS.W_I_ZERO,
549                               QtGui.QStandardItem(
550                                   "{:.3g}".format(pr.iq0(out))))
551            self.model.setItem(WIDGETS.W_OSCILLATION, QtGui.QStandardItem(
552                "{:.3g}".format(pr.oscillations(out))))
553            self.model.setItem(WIDGETS.W_POS_FRACTION, QtGui.QStandardItem(
554                "{:.3g}".format(pr.get_positive(out))))
555            if cov is not None:
556                self.model.setItem(WIDGETS.W_SIGMA_POS_FRACTION,
557                                   QtGui.QStandardItem(
558                                       "{:.3g}".format(
559                                           pr.get_pos_err(out, cov))))
560        if self.prPlot is not None:
561            title = self.prPlot.name
562            GuiUtils.updateModelItemWithPlot(self._data, self.prPlot, title)
563            self.communicate.plotRequestedSignal.emit([self.prPlot])
564        if self.dataPlot is not None:
565            title = self.dataPlot.name
566            GuiUtils.updateModelItemWithPlot(self._data, self.dataPlot, title)
567            self.communicate.plotRequestedSignal.emit([self.dataPlot])
568        self.enableButtons()
569
570    def removeData(self, data_list=None):
571        """Remove the existing data reference from the P(r) Persepective"""
572        self.dataDeleted = True
573        self.batchResults = {}
574        if not data_list:
575            data_list = [self._data]
576        self.closeDMax()
577        for data in data_list:
578            self._dataList.pop(data)
579        self._data = None
580        length = len(self.dataList)
581        for index in reversed(range(length)):
582            if self.dataList.itemData(index) in data_list:
583                self.dataList.removeItem(index)
584        # Last file removed
585        self.dataDeleted = False
586        if len(self._dataList) == 0:
587            self.prPlot = None
588            self.dataPlot = None
589            self.logic.data = None
590            self._calculator = Invertor()
591            self.closeBatchResults()
592            self.nTermsSuggested = NUMBER_OF_TERMS
593            self.noOfTermsSuggestionButton.setText("{:n}".format(
594                self.nTermsSuggested))
595            self.regConstantSuggestionButton.setText("{:-3.2g}".format(
596                REGULARIZATION))
597            self.updateGuiValues()
598            self.setupModel()
599        else:
600            self.dataList.setCurrentIndex(0)
601            self.updateGuiValues()
602
603    ######################################################################
604    # Thread Creators
605
606    def startThreadAll(self):
607        self.isCalculating = True
608        self.isBatch = True
609        self.batchComplete = []
610        self.calculateAllButton.setText("Calculating...")
611        self.enableButtons()
612        self.batchResultsWindow = BatchInversionOutputPanel(
613            parent=self, output_data=self.batchResults)
614        self.performEstimate()
615
616    def startNextBatchItem(self):
617        self.isBatch = False
618        for index in range(len(self._dataList)):
619            if index not in self.batchComplete:
620                self.dataList.setCurrentIndex(index)
621                self.isBatch = True
622                # Add the index before calculating in case calculation fails
623                self.batchComplete.append(index)
624                break
625        if self.isBatch:
626            self.performEstimate()
627        else:
628            # If no data sets left, end batch calculation
629            self.isCalculating = False
630            self.batchComplete = []
631            self.calculateAllButton.setText("Calculate All")
632            self.showBatchOutput()
633            self.enableButtons()
634
635    def startThread(self):
636        """
637            Start a calculation thread
638        """
639        from .Thread import CalcPr
640
641        # Set data before running the calculations
642        self.isCalculating = True
643        self.enableButtons()
644        self.updateCalculator()
645        # Disable calculation buttons to prevent thread interference
646
647        # If the thread is already started, stop it
648        self.stopCalcThread()
649
650        pr = self._calculator.clone()
651        nfunc = self.getNFunc()
652        self.calcThread = CalcPr(pr, nfunc,
653                                 error_func=self._threadError,
654                                 completefn=self._calculateCompleted,
655                                 updatefn=None)
656        self.calcThread.queue()
657        self.calcThread.ready(2.5)
658
659        #Perform estimate should be done on value enter this should solve delay problem
660        self.performEstimate()
661
662    def stopCalcThread(self):
663        """ Stops a thread if it exists and is running """
664        if self.calcThread is not None and self.calcThread.isrunning():
665            self.calcThread.stop()
666
667    def performEstimateNT(self):
668        """
669        Perform parameter estimation
670        """
671        from .Thread import EstimateNT
672
673        self.updateCalculator()
674
675        # If a thread is already started, stop it
676        self.stopEstimateNTThread()
677
678        pr = self._calculator.clone()
679        # Skip the slit settings for the estimation
680        # It slows down the application and it doesn't change the estimates
681        pr.slit_height = 0.0
682        pr.slit_width = 0.0
683        nfunc = self.getNFunc()
684
685        self.estimationThreadNT = EstimateNT(pr, nfunc,
686                                             error_func=self._threadError,
687                                             completefn=self._estimateNTCompleted,
688                                             updatefn=None)
689        self.estimationThreadNT.queue()
690        self.estimationThreadNT.ready(2.5)
691
692    def performEstimateDynamicNT(self):
693        """
694        Perform parameter estimation
695        """
696        from .Thread import EstimateNT
697
698        self.updateCalculator()
699
700        # If a thread is already started, stop it
701        self.stopEstimateNTThread()
702
703        pr = self._calculator.clone()
704        # Skip the slit settings for the estimation
705        # It slows down the application and it doesn't change the estimates
706        pr.slit_height = 0.0
707        pr.slit_width = 0.0
708        nfunc = self.getNFunc()
709
710        self.estimationThreadNT = EstimateNT(pr, nfunc,
711                                             error_func=self._threadError,
712                                             completefn=self._estimateDynamicNTCompleted,
713                                             updatefn=None)
714        self.estimationThreadNT.queue()
715        self.estimationThreadNT.ready(2.5)
716
717    def stopEstimateNTThread(self):
718        if (self.estimationThreadNT is not None and
719                self.estimationThreadNT.isrunning()):
720            self.estimationThreadNT.stop()
721
722    def performEstimate(self):
723        """
724            Perform parameter estimation
725        """
726        from .Thread import EstimatePr
727
728        # If a thread is already started, stop it
729        self.stopEstimationThread()
730
731        self.estimationThread = EstimatePr(self._calculator.clone(),
732                                           self.getNFunc(),
733                                           error_func=self._threadError,
734                                           completefn=self._estimateCompleted,
735                                           updatefn=None)
736        self.estimationThread.queue()
737        self.estimationThread.ready(2.5)
738
739    def performEstimateDynamic(self):
740        """
741            Perform parameter estimation
742        """
743        from .Thread import EstimatePr
744
745        # If a thread is already started, stop it
746        self.stopEstimationThread()
747
748        self.estimationThread = EstimatePr(self._calculator.clone(),
749                                           self.getNFunc(),
750                                           error_func=self._threadError,
751                                           completefn=self._estimateDynamicCompleted,
752                                           updatefn=None)
753        self.estimationThread.queue()
754        self.estimationThread.ready(2.5)
755
756    def stopEstimationThread(self):
757        """ Stop the estimation thread if it exists and is running """
758        if (self.estimationThread is not None and
759                self.estimationThread.isrunning()):
760            self.estimationThread.stop()
761
762    ######################################################################
763    # Thread Complete
764
765    def _estimateCompleted(self, alpha, message, elapsed):
766        ''' Send a signal to the main thread for model update'''
767        self.estimateSignal.emit((alpha, message, elapsed))
768
769    def _estimateDynamicCompleted(self, alpha, message, elapsed):
770        ''' Send a signal to the main thread for model update'''
771        self.estimateDynamicSignal.emit((alpha, message, elapsed))
772
773    def _estimateUpdate(self, output_tuple):
774        """
775        Parameter estimation completed,
776        display the results to the user
777
778        :param alpha: estimated best alpha
779        :param elapsed: computation time
780        """
781        alpha, message, elapsed = output_tuple
782        self._calculator.alpha = alpha
783        self._calculator.elapsed += self._calculator.elapsed
784        if message:
785            logger.info(message)
786        self.performEstimateNT()
787
788    def _estimateDynamicUpdate(self, output_tuple):
789        """
790        Parameter estimation completed,
791        display the results to the user
792
793        :param alpha: estimated best alpha
794        :param elapsed: computation time
795        """
796        alpha, message, elapsed = output_tuple
797        self._calculator.alpha = alpha
798        self._calculator.elapsed += self._calculator.elapsed
799        if message:
800            logger.info(message)
801        self.performEstimateDynamicNT()
802
803    def _estimateNTCompleted(self, nterms, alpha, message, elapsed):
804        ''' Send a signal to the main thread for model update'''
805        self.estimateNTSignal.emit((nterms, alpha, message, elapsed))
806
807    def _estimateDynamicNTCompleted(self, nterms, alpha, message, elapsed):
808        ''' Send a signal to the main thread for model update'''
809        self.estimateDynamicNTSignal.emit((nterms, alpha, message, elapsed))
810
811    def _estimateNTUpdate(self, output_tuple):
812        """
813        Parameter estimation completed,
814        display the results to the user
815
816        :param alpha: estimated best alpha
817        :param nterms: estimated number of terms
818        :param elapsed: computation time
819        """
820        nterms, alpha, message, elapsed = output_tuple
821        self._calculator.elapsed += elapsed
822        self._calculator.suggested_alpha = alpha
823        self.nTermsSuggested = nterms
824        # Save useful info
825        self.updateGuiValues()
826        if message:
827            logger.info(message)
828        if self.isBatch:
829            self.acceptAlpha()
830            self.acceptNoTerms()
831            self.startThread()
832
833    def _estimateDynamicNTUpdate(self, output_tuple):
834        """
835        Parameter estimation completed,
836        display the results to the user
837
838        :param alpha: estimated best alpha
839        :param nterms: estimated number of terms
840        :param elapsed: computation time
841        """
842        nterms, alpha, message, elapsed = output_tuple
843        self._calculator.elapsed += elapsed
844        self._calculator.suggested_alpha = alpha
845        self.nTermsSuggested = nterms
846        # Save useful info
847        self.updateDynamicGuiValues()
848        if message:
849            logger.info(message)
850        if self.isBatch:
851            self.acceptAlpha()
852            self.acceptNoTerms()
853            self.startThread()
854
855    def _calculateCompleted(self, out, cov, pr, elapsed):
856        ''' Send a signal to the main thread for model update'''
857        self.calculateSignal.emit((out, cov, pr, elapsed))
858
859    def _calculateUpdate(self, output_tuple):
860        """
861        Method called with the results when the inversion is done
862
863        :param out: output coefficient for the base functions
864        :param cov: covariance matrix
865        :param pr: Invertor instance
866        :param elapsed: time spent computing
867        """
868        out, cov, pr, elapsed = output_tuple
869        # Save useful info
870        cov = np.ascontiguousarray(cov)
871        pr.cov = cov
872        pr.out = out
873        pr.elapsed = elapsed
874
875        # Save Pr invertor
876        self._calculator = pr
877
878        # Update P(r) and fit plots
879        self.prPlot = self.logic.newPRPlot(out, self._calculator, cov)
880        self.prPlot.filename = self.logic.data.filename
881        self.dataPlot = self.logic.new1DPlot(out, self._calculator)
882        self.dataPlot.filename = self.logic.data.filename
883
884        # Udpate internals and GUI
885        self.updateDataList(self._data)
886        if self.isBatch:
887            self.batchComplete.append(self.dataList.currentIndex())
888            self.startNextBatchItem()
889        else:
890            self.isCalculating = False
891        self.updateGuiValues()
892
893    def _threadError(self, error):
894        """
895            Call-back method for calculation errors
896        """
897        logger.error(error)
898        if self.isBatch:
899            self.startNextBatchItem()
900        else:
901            self.stopCalculation()
Note: See TracBrowser for help on using the repository browser.