Changeset 7343319 in sasview
- Timestamp:
- Apr 18, 2012 11:38:52 AM (13 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:
- 31f9d0c2
- Parents:
- 43e8326
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
calculatorview/src/sans/perspectives/calculator/console.py
r6572274 r7343319 20 20 FONT_VARIANT = 1 21 21 22 23 22 class ConsoleDialog(wx.Dialog): 23 """ 24 Data summary dialog 25 """ 24 26 def __init__(self, parent=None, manager=None, data=None, 25 27 title="Data Summary", size=(PANEL_WIDTH, PANEL_HEIGHT)): -
calculatorview/src/sans/perspectives/calculator/load_thread.py
r79411b2 r7343319 1 1 """ 2 Thread handler used to load data 3 """ 2 4 import time 3 4 5 5 from data_util.calcthread import CalcThread 6 6 from sans.dataloader.loader import Loader 7 7 8 9 8 class DataReader(CalcThread): 10 9 """ 11 10 Load a data given a filename 12 11 """ 13 12 def __init__(self, path, completefn=None, -
sansmodels/src/python_wrapper/WrapperGenerator.py
r5c46f43 r7343319 459 459 460 460 # non-fittable list details 461 pars_str = str(self.non_fittable) 462 pars_str = pars_str.replace(', ', '\n ') 461 463 newline = self.replaceToken(newline, 462 464 "[NON_FITTABLE_PARAMS]", 463 str(self.non_fittable))465 pars_str) 464 466 465 467 ## parameters with orientation 466 468 oriented_str = str(self.orientation_params) 467 formatted_endl = '\n '469 formatted_endl = '\n ' 468 470 oriented_str = oriented_str.replace(', ', formatted_endl) 469 471 newline = self.replaceToken(newline, -
sansview/custom_config.py
rc00592d r7343319 1 #Application appearance custom configuration 1 """ 2 Application appearance custom configuration 3 """ 2 4 DATAPANEL_WIDTH = 260 3 5 CLEANUP_PLOT = False
Note: See TracChangeset
for help on using the changeset viewer.