Changeset fe857e2 in sasview for sansguiframe/src/sans/guiframe/local_perspectives
- Timestamp:
- Aug 11, 2011 1:18:03 PM (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:
- d1fbbd42
- Parents:
- db7a82e
- Location:
- sansguiframe/src/sans/guiframe/local_perspectives/plotting
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
sansguiframe/src/sans/guiframe/local_perspectives/plotting/Plotter1D.py
r2636188 rfe857e2 592 592 # It should be a simple matter of calling the . 593 593 #save(file, data, '.xml') method 594 # of the DataLoader.loader.Loader class.595 from DataLoader.loader import Loader594 # of the sans.dataloader.loader.Loader class. 595 from sans.dataloader.loader import Loader 596 596 #Instantiate a loader 597 597 loader = Loader() -
sansguiframe/src/sans/guiframe/local_perspectives/plotting/Plotter2D.py
r8c347a6 rfe857e2 429 429 npt = math.sqrt(len(self.data2D.data[numpy.isfinite(self.data2D.data)])) 430 430 npt = math.floor(npt) 431 from DataLoader.manipulations import CircularAverage431 from sans.dataloader.manipulations import CircularAverage 432 432 ## compute the maximum radius of data2D 433 433 self.qmax = max(math.fabs(self.data2D.xmax), … … 610 610 #save(file, data, '.xml') method 611 611 # of the DataLoader.loader.Loader class. 612 from DataLoader.loader import Loader612 from sans.dataloader.loader import Loader 613 613 #Instantiate a loader 614 614 loader = Loader()
Note: See TracChangeset
for help on using the changeset viewer.