Changeset 2e9b98c in sasview for DataLoader
- Timestamp:
- Feb 9, 2009 12:52:12 PM (16 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:
- 72637e8
- Parents:
- b568ec1b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
DataLoader/data_info.py
r24120ab r2e9b98c 154 154 ## Slit length of the instrument for this detector.[float] [mm] 155 155 slit_length = None 156 slit_length_unit = ' 1/A'156 slit_length_unit = 'mm' 157 157 158 158 def __init__(self): … … 541 541 1D data class 542 542 """ 543 x_unit = ' 1/A'544 y_unit = ' 1/cm'543 x_unit = 'A^{-1}' 544 y_unit = 'cm^{-1}' 545 545 546 546 def __init__(self, x, y, dx=None, dy=None): … … 660 660 """ 661 661 ## Units for Q-values 662 Q_unit = ' 1/A'662 Q_unit = 'A^{-1}' 663 663 664 664 ## Units for I(Q) values 665 I_unit = ' 1/cm'665 I_unit = 'cm^{-1}' 666 666 667 667 ## Vector of Q-values at the center of each bin in x
Note: See TracChangeset
for help on using the changeset viewer.