Changeset 463e7ffc in sasview for src/sas/sasgui/perspectives/invariant
- Timestamp:
- Apr 4, 2017 12:39:42 PM (8 years ago)
- Branches:
- master, ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc, costrafo411, magnetic_scatt, release-4.2.2, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
- Children:
- 9c0f3c17
- Parents:
- c155a16
- Location:
- src/sas/sasgui/perspectives/invariant
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/sasgui/perspectives/invariant/invariant.py
rc155a16 r463e7ffc 27 27 from sas.sasgui.guiframe.plugin_base import PluginBase 28 28 29 logger = logging.getLogger( )29 logger = logging.getLogger(__name__) 30 30 31 31 class Plugin(PluginBase): -
src/sas/sasgui/perspectives/invariant/invariant_panel.py
rc155a16 r463e7ffc 25 25 from sas.sasgui.guiframe.documentation_window import DocumentationWindow 26 26 27 logger = logging.getLogger( )27 logger = logging.getLogger(__name__) 28 28 29 29 # The minimum q-value to be used when extrapolating -
src/sas/sasgui/perspectives/invariant/invariant_state.py
rc155a16 r463e7ffc 17 17 from sas.sasgui.guiframe.dataFitting import Data1D 18 18 19 logger = logging.getLogger( )19 logger = logging.getLogger(__name__) 20 20 21 21 INVNODE_NAME = 'invariant' -
src/sas/sasgui/perspectives/invariant/report_dialog.py
rc155a16 r463e7ffc 21 21 from sas.sasgui.guiframe.report_dialog import BaseReportDialog 22 22 23 logger = logging.getLogger( )23 logger = logging.getLogger(__name__) 24 24 25 25 class ReportDialog(BaseReportDialog):
Note: See TracChangeset
for help on using the changeset viewer.