Changeset ea5551f in sasview
- Timestamp:
- Jul 28, 2008 10:26:37 AM (16 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:
- 8bd8ea4
- Parents:
- 0bae207
- Location:
- prview
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
prview/perspectives/pr/pr.py
r0bae207 rea5551f 340 340 by our standard DataLoader class. 341 341 """ 342 342 #TODO: use DataLoader 343 343 class FileData: 344 344 x = None … … 351 351 352 352 self._current_file_data = FileData(path) 353 print "load", path354 353 basename = os.path.basename(path) 355 354 root, ext = os.path.splitext(basename) … … 678 677 679 678 if path is not None: 680 pr = self._create_file_pr(path) 681 self.pr = pr 679 try: 680 pr = self._create_file_pr(path) 681 self.pr = pr 682 except: 683 wx.PostEvent(self.parent, StatusEvent(status=sys.exc_value)) 684 return 682 685 683 686 # Make a plot of I(q) data -
prview/perspectives/pr/requirements.txt
rfeb21d8 rea5551f 1 1. Thread 1 1. Thread [done] 2 2 2. Find good defaults. Automate the inversion. 3 3 -How do we estimate d_max? Guinier fit? … … 30 30 26. Remove an added curve... 31 31 27. Add multiple additional data curves. 32 28. Use Data Loader. -
prview/release_notes.txt
r0bae207 rea5551f 10 10 - Added functionality for .ABS IGOR reduced 1D files. 11 11 - Fixed problem with loading additional data after the P(r) graph's scale has been changed. 12 - Fixed problem of silent failure upon loading a file with a point at Q=0. 12 13 13 14 Version 0.2.2
Note: See TracChangeset
for help on using the changeset viewer.