Changeset 61a8b58 in sasview for src/sas/qtgui
- Timestamp:
- Sep 29, 2017 3:46:22 AM (7 years ago)
- Branches:
- 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
- Children:
- 7d8bebf
- Parents:
- 7d97e2d (diff), 7d353af (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - Location:
- src/sas/qtgui
- Files:
-
- 3 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/GUITests.py
r464cd07 r01cda57 37 37 from Calculators.UnitTesting import SLDCalculatorTest 38 38 from Calculators.UnitTesting import SlitSizeCalculatorTest 39 from Calculators.UnitTesting import ResolutionCalculatorPanelTest 39 40 40 41 # Utilities … … 92 93 unittest.makeSuite(SLDCalculatorTest.SLDCalculatorTest, 'test'), 93 94 unittest.makeSuite(SlitSizeCalculatorTest.SlitSizeCalculatorTest, 'test'), 95 unittest.makeSuite(ResolutionCalculatorPanelTest.ResolutionCalculatorPanelTest, 'test'), 94 96 95 97 # Perspectives … … 100 102 unittest.makeSuite(FitPageTest.FitPageTest, 'test'), 101 103 unittest.makeSuite(FittingOptionsTest.FittingOptionsTest, 'test'), 102 )104 ) 103 105 return unittest.TestSuite(suites) 104 106 -
src/sas/qtgui/MainWindow/GuiManager.py
r3c8242c r01cda57 30 30 from sas.qtgui.Calculators.SlitSizeCalculator import SlitSizeCalculator 31 31 from sas.qtgui.Calculators.GenericScatteringCalculator import GenericScatteringCalculator 32 from sas.qtgui.Calculators.ResolutionCalculatorPanel import ResolutionCalculatorPanel 33 32 34 33 35 # Perspectives … … 136 138 self.SLDCalculator = SldPanel(self) 137 139 self.DVCalculator = DensityPanel(self) 138 #self.KIESSIGCalculator = DensityPanel(self)#KiessigPanel(self)139 140 self.KIESSIGCalculator = KiessigPanel(self) 140 141 self.SlitSizeCalculator = SlitSizeCalculator(self) 141 142 self.GENSASCalculator = GenericScatteringCalculator(self) 143 self.ResolutionCalculator = ResolutionCalculatorPanel(self) 142 144 143 145 def statusBarSetup(self): … … 556 558 """ 557 559 """ 558 print("actionSAS_Resolution_Estimator TRIGGERED") 559 pass 560 self.ResolutionCalculator.show() 560 561 561 562 def actionGeneric_Scattering_Calculator(self): -
src/sas/qtgui/Plotting/Plotter2D.py
rdc5ef15 r01cda57 429 429 430 430 im = self.ax.imshow(output, interpolation='nearest', 431 origin='lower',431 # origin='lower', 432 432 vmin=zmin_temp, vmax=zmax_temp, 433 433 cmap=self.cmap, … … 494 494 """ 495 495 Replace data in current chart. 496 This effect lvely refreshes the chart with changes to one of its plots496 This effectively refreshes the chart with changes to one of its plots 497 497 """ 498 498 self.plot(data=new_plot)
Note: See TracChangeset
for help on using the changeset viewer.