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

Last change on this file since 6d96bf9 was 6d96bf9, checked in by Adam Washington <adam.washington@…>, 7 years ago

Start adding Corfunc Panel

  • Property mode set to 100644
File size: 402 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 Corfunc.CorfuncPerspective import CorfuncWindow
7
8PERSPECTIVES = {
9    FittingWindow.name: FittingWindow,
10    InvariantWindow.name: InvariantWindow,
11    CorfuncWindow.name: CorfuncWindow,
12}
Note: See TracBrowser for help on using the repository browser.