Ignore:
Timestamp:
Oct 8, 2016 2:34:03 PM (8 years ago)
Author:
jhbakker
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, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
Children:
51a4d78
Parents:
6df015de
Message:

Data1D class changed to include SESANS Data format

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/sas/sascalc/dataloader/data_info.py

    r1b82623 r7988501  
    705705        raise(TypeError,'This is neither SANS nor SESANS data, what the hell are you doing??') 
    706706 
    707     def __init__(self, x=None, y=None, lam=None, dx=None, dy=None, dlam=None): 
     707    def __init__(self, x=None, y=None, dx=None, dy=None, lam=None, dlam=None): 
    708708        DataInfo.__init__(self) 
    709         plottable_1D.__init__(self, x, y, lam, dx, dy, dlam) 
     709        plottable_1D.__init__(self, x, y, dx, dy,None, None, lam, dlam) 
     710        if self.lam is None: # This means the lam param was not detected in the data: it's SANS data! 
     711            x_unit = '1/A' 
     712            y_unit = '1/cm' 
     713        elif self.lam is not None: # This means lam was detected (should be an empty ndarray): it's SESANS data! 
     714            x_unit = 'A' 
     715            y_unit = 'pol' 
     716        else: # and if it's neither, you get punished! 
     717            raise(TypeError,'This is neither SANS nor SESANS data, what the hell are you doing??') 
    710718 
    711719    def __str__(self): 
Note: See TracChangeset for help on using the changeset viewer.