Ignore:
Timestamp:
Jul 13, 2016 8:52:08 AM (8 years ago)
Author:
krzywon
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:
0f1e140
Parents:
dd5bf63
Message:

#237: Modified the CanSAS HDF5 reader to read the latest version output from Mantid. Fixed the CanSAS XML reader so the axis titles and units are displayed properly.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/sas/sascalc/dataloader/readers/cansas_reader.py

    raf09f48 rd398285  
    1212#copyright 2008,2009 University of Tennessee 
    1313############################################################################# 
    14  
     14##TODO: Replace 1/A with 1/\AA for Angstorm 
     15##TODO: Put in x-axis and y-axis information 
    1516import logging 
    1617import numpy 
     
    456457                    attrib_variable = cansas_attrib.get("variable") 
    457458                    if key == 'unit' and unit != '': 
     459                        if unit == "1/A": 
     460                            unit = "A^{-1}" 
     461                        elif unit == "1/cm": 
     462                            unit = "cm^{-1}" 
    458463                        attrib_value = unit 
    459464                    else: 
Note: See TracChangeset for help on using the changeset viewer.