Changeset fe857e2 in sasview


Ignore:
Timestamp:
Aug 11, 2011 1:18:03 PM (13 years ago)
Author:
Jae Cho <jhjcho@…>
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
Message:

updated dataloader calls

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  
    592592            # It should be a simple matter of calling the . 
    593593            #save(file, data, '.xml') method 
    594             # of the DataLoader.loader.Loader class. 
    595             from DataLoader.loader import  Loader 
     594            # of the sans.dataloader.loader.Loader class. 
     595            from sans.dataloader.loader import  Loader 
    596596            #Instantiate a loader  
    597597            loader = Loader()  
  • sansguiframe/src/sans/guiframe/local_perspectives/plotting/Plotter2D.py

    r8c347a6 rfe857e2  
    429429        npt = math.sqrt(len(self.data2D.data[numpy.isfinite(self.data2D.data)])) 
    430430        npt = math.floor(npt) 
    431         from DataLoader.manipulations import CircularAverage 
     431        from sans.dataloader.manipulations import CircularAverage 
    432432        ## compute the maximum radius of data2D 
    433433        self.qmax = max(math.fabs(self.data2D.xmax),  
     
    610610                #save(file, data, '.xml') method 
    611611                # of the DataLoader.loader.Loader class. 
    612                 from DataLoader.loader import  Loader 
     612                from sans.dataloader.loader import  Loader 
    613613                #Instantiate a loader  
    614614                loader = Loader()  
Note: See TracChangeset for help on using the changeset viewer.