Ignore:
Timestamp:
Aug 9, 2011 11:18:55 AM (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:
804dd60
Parents:
d075f58
Message:

update dataloader name

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sansdataloader/test/utest_averaging.py

    raab4e15 rca3b9c5d  
    22import unittest 
    33 
    4 from DataLoader.loader import  Loader 
    5 from DataLoader.manipulations import Ring, CircularAverage, SectorPhi, get_q,reader2D_converter 
     4from sans.dataloader.loader import  Loader 
     5from sans.dataloader.manipulations import Ring, CircularAverage, SectorPhi, get_q,reader2D_converter 
    66  
    77import os.path 
    88import numpy, math 
    9 import DataLoader.data_info as data_info 
     9import sans.dataloader.data_info as data_info 
    1010 
    1111class Averaging(unittest.TestCase): 
     
    136136            The test data was not generated by IGOR. 
    137137        """ 
    138         from DataLoader.manipulations import Boxsum, Boxavg 
     138        from sans.dataloader.manipulations import Boxsum, Boxavg 
    139139         
    140140        r = Boxsum(x_min=.01, x_max=.015, y_min=0.01, y_max=0.015) 
     
    153153            The test data was not generated by IGOR. 
    154154        """ 
    155         from DataLoader.manipulations import SlabX 
     155        from sans.dataloader.manipulations import SlabX 
    156156         
    157157        r = SlabX(x_min=-.01, x_max=.01, y_min=-0.0002, y_max=0.0002, bin_width=0.0004) 
     
    170170            The test data was not generated by IGOR. 
    171171        """ 
    172         from DataLoader.manipulations import SlabY 
     172        from sans.dataloader.manipulations import SlabY 
    173173         
    174174        r = SlabY(x_min=.005, x_max=.01, y_min=-0.01, y_max=0.01, bin_width=0.0004) 
     
    189189            The test data was not generated by IGOR. 
    190190        """ 
    191         from DataLoader.manipulations import SectorPhi 
     191        from sans.dataloader.manipulations import SectorPhi 
    192192        import math 
    193193         
     
    207207            The test data was not generated by IGOR. 
    208208        """ 
    209         from DataLoader.manipulations import SectorPhi 
     209        from sans.dataloader.manipulations import SectorPhi 
    210210        import math 
    211211         
     
    225225            The test data was not generated by IGOR. 
    226226        """ 
    227         from DataLoader.manipulations import SectorQ 
     227        from sans.dataloader.manipulations import SectorQ 
    228228        import math 
    229229         
Note: See TracChangeset for help on using the changeset viewer.