Changeset 83b81b8 in sasview for sansguiframe/src/sans/guiframe
- Timestamp:
- Jun 28, 2012 5:49:52 PM (12 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.1.1, release-4.1.2, release-4.2.2, release_4.0.1, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
- Children:
- 3b2b031
- Parents:
- 986da97
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sansguiframe/src/sans/guiframe/gui_manager.py
r1618a7e r83b81b8 2641 2641 Show data dialog 2642 2642 """ 2643 try: 2644 xmin = min(data.x) 2645 ymin = min(data.y) 2646 except: 2647 msg = "Unable to find min/max of \n data named %s"% \ 2648 data.filename 2649 wx.PostEvent(self, StatusEvent(status=msg, 2650 info="error")) 2651 raise ValueError, msg 2643 2652 text = data.__str__() 2644 2653 text += 'Data Min Max:\n' 2645 text += 'X_min = %s: X_max = %s\n'% ( min(data.x), max(data.x))2646 text += 'Y_min = %s: Y_max = %s\n'% ( min(data.y), max(data.y))2654 text += 'X_min = %s: X_max = %s\n'% (xmin, max(data.x)) 2655 text += 'Y_min = %s: Y_max = %s\n'% (ymin, max(data.y)) 2647 2656 if data.dy != None: 2648 2657 text += 'dY_min = %s: dY_max = %s\n'% (min(data.dy), max(data.dy))
Note: See TracChangeset
for help on using the changeset viewer.