Changeset 463e7ffc in sasview for src/sas/sasgui/perspectives/calculator
- 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/calculator
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/sasgui/perspectives/calculator/calculator.py
rc155a16 r463e7ffc 28 28 import logging 29 29 30 logger = logging.getLogger( )30 logger = logging.getLogger(__name__) 31 31 32 32 class Plugin(PluginBase): -
src/sas/sasgui/perspectives/calculator/gen_scatter_panel.py
rc155a16 r463e7ffc 39 39 from sas.sasgui.guiframe.documentation_window import DocumentationWindow 40 40 41 logger = logging.getLogger( )41 logger = logging.getLogger(__name__) 42 42 43 43 _BOX_WIDTH = 76 -
src/sas/sasgui/perspectives/calculator/model_editor.py
rc155a16 r463e7ffc 33 33 from .pyconsole import show_model_output, check_model 34 34 35 logger = logging.getLogger( )35 logger = logging.getLogger(__name__) 36 36 37 37 -
src/sas/sasgui/perspectives/calculator/resolution_calculator_panel.py
rc155a16 r463e7ffc 35 35 from sas.sasgui.guiframe.documentation_window import DocumentationWindow 36 36 37 logger = logging.getLogger( )37 logger = logging.getLogger(__name__) 38 38 39 39 _BOX_WIDTH = 100
Note: See TracChangeset
for help on using the changeset viewer.