source: sasview/src/sas/qtgui/Perspectives/__init__.py @ d4881f6a

ESS_GUIESS_GUI_DocsESS_GUI_batch_fittingESS_GUI_bumps_abstractionESS_GUI_iss1116ESS_GUI_iss879ESS_GUI_iss959ESS_GUI_openclESS_GUI_orderingESS_GUI_sync_sascalc
Last change on this file since d4881f6a was d4881f6a, checked in by Piotr Rozyczko <rozyczko@…>, 6 years ago

Initial implementation of Adam Washington's Corfunc perspective.
Converted to py3/Qt5.

  • Property mode set to 100755
File size: 507 bytes
Line 
1# Available perspectives.
2# When adding a new perspective, this dictionary needs to be updated
3
4from .Fitting.FittingPerspective import FittingWindow
5from .Invariant.InvariantPerspective import InvariantWindow
6from .Inversion.InversionPerspective import InversionWindow
7from .Corfunc.CorfuncPerspective import CorfuncWindow
8
9PERSPECTIVES = {
10    FittingWindow.name: FittingWindow,
11    InvariantWindow.name: InvariantWindow,
12    InversionWindow.name: InversionWindow,
13    CorfuncWindow.name: CorfuncWindow,
14}
Note: See TracBrowser for help on using the repository browser.