source: sasview/src/sas/sascalc/dataloader/readers/sesans_reader.py @ bc6532e

ESS_GUIESS_GUI_DocsESS_GUI_batch_fittingESS_GUI_bumps_abstractionESS_GUI_iss1116ESS_GUI_iss879ESS_GUI_iss959ESS_GUI_openclESS_GUI_orderingESS_GUI_sync_sascalccostrafo411magnetic_scattrelease-4.2.2ticket-1009ticket-1094-headlessticket-1242-2d-resolutionticket-1243ticket-1249ticket885unittest-saveload
Last change on this file since bc6532e was bc6532e, checked in by Adam Washington <adam.washington@…>, 7 years ago

Try switch type annotation styles in sesans_reader.py

  • Property mode set to 100644
File size: 6.2 KB
RevLine 
[5e326a6]1"""
[edfc8ac]2    SESANS reader (based on ASCII reader)
[ecc8d1a8]3
[edfc8ac]4    Reader for .ses or .sesans file format
[ecc8d1a8]5
6    Jurrian Bakker
[5e326a6]7"""
[e935ddb1]8import numpy as np
[5e326a6]9import os
[b5db35d]10from sas.sascalc.dataloader.data_info import Data1D
[5e326a6]11
12# Check whether we have a converter available
13has_converter = True
14try:
[b699768]15    from sas.sascalc.data_util.nxsunit import Converter
[5e326a6]16except:
17    has_converter = False
18_ZERO = 1e-16
19
[def97a0]20
[5e326a6]21class Reader:
22    """
23    Class to load sesans files (6 columns).
24    """
[def97a0]25    # File type
[5e326a6]26    type_name = "SESANS"
[ecc8d1a8]27
[def97a0]28    # Wildcards
[5e326a6]29    type = ["SESANS files (*.ses)|*.ses",
30            "SESANS files (*..sesans)|*.sesans"]
[def97a0]31    # List of allowed extensions
[5e326a6]32    ext = ['.ses', '.SES', '.sesans', '.SESANS']
[ecc8d1a8]33
[def97a0]34    # Flag to bypass extension check
[5e326a6]35    allow_all = True
[ecc8d1a8]36
[5e326a6]37    def read(self, path):
38        """
39        Load data file
[ecc8d1a8]40
[5e326a6]41        :param path: file path
[ecc8d1a8]42
[5e326a6]43        :return: SESANSData1D object, or None
[ecc8d1a8]44
[5e326a6]45        :raise RuntimeError: when the file can't be opened
46        :raise ValueError: when the length of the data vectors are inconsistent
47        """
48        if os.path.isfile(path):
49            basename = os.path.basename(path)
50            _, extension = os.path.splitext(basename)
51            if self.allow_all or extension.lower() in self.ext:
[e935ddb1]52                with open(path, 'r') as input_f:
[5e326a6]53                    # Read in binary mode since GRASP frequently has no-ascii
54                    # characters that brakes the open operation
[e935ddb1]55                    line = input_f.readline()
56                    params = {}
57                    while line.strip() != "":
58                        terms = line.strip().split("\t")
59                        params[terms[0].strip()] = " ".join(terms[1:]).strip()
60                        line = input_f.readline()
61                    headers_temp = input_f.readline().strip().split("\t")
62                    headers = {}
63                    for h in headers_temp:
64                        temp = h.strip().split()
65                        headers[h[:-1].strip()] = temp[-1][1:-1]
66                    data = np.loadtxt(input_f)
67                    x = data[:, 0]
68                    dx = data[:, 3]
69                    lam = data[:, 4]
70                    dlam = data[:, 5]
71                    y = data[:, 1]
72                    dy = data[:, 2]
[26d4864]73
[388bd51]74                    lam_unit = self._header_fetch(headers, "wavelength")
[e935ddb1]75                    if lam_unit == "AA":
76                        lam_unit = "A"
[def97a0]77
78                    x, x_unit = self._unit_conversion(
79                        x, lam_unit,
[388bd51]80                        self._fetch_unit(headers, "spin echo length"))
[def97a0]81                    dx, dx_unit = self._unit_conversion(
82                        dx, lam_unit,
[388bd51]83                        self._fetch_unit(headers, "error SEL"))
[def97a0]84                    dlam, dlam_unit = self._unit_conversion(
85                        dlam, lam_unit,
[388bd51]86                        self._fetch_unit(headers, "error wavelength"))
[e935ddb1]87                    y_unit = r'\AA^{-2} cm^{-1}'
[26d4864]88
[def97a0]89                    output = Data1D(x=x, y=y, lam=lam, dy=dy, dx=dx, dlam=dlam,
90                                    isSesans=True)
[e935ddb1]91                    self.filename = output.filename = basename
92                    output.xaxis(r"\rm{z}", x_unit)
[def97a0]93                    # Adjust label to ln P/(lam^2 t), remove lam column refs
94                    output.yaxis(r"\rm{ln(P)/(t \lambda^2)}", y_unit)
[e935ddb1]95                    # Store loading process information
96                    output.meta_data['loader'] = self.type_name
97                    output.sample.name = params["Sample"]
98                    output.sample.ID = params["DataFileTitle"]
[26d4864]99
[def97a0]100                    output.sample.zacceptance = (
[388bd51]101                        float(self._header_fetch(params, "Q_zmax")),
102                        self._fetch_unit(params, "Q_zmax"))
[5e326a6]103
[def97a0]104                    output.sample.yacceptance = (
[388bd51]105                        float(self._header_fetch(params, "Q_ymax")),
106                        self._fetch_unit(params, "Q_ymax"))
[5e326a6]107
108                if len(output.x) < 1:
[def97a0]109                    raise RuntimeError("%s is empty" % path)
[5e326a6]110                return output
[26d4864]111
[5e326a6]112        else:
[def97a0]113            raise RuntimeError("%s is not a file" % path)
[5e326a6]114        return None
[26d4864]115
[2d866370]116    @staticmethod
117    def _unit_conversion(value, value_unit, default_unit):
[09a0be5]118        """
119        Performs unit conversion on a measurement.
120
121        :param value: The magnitude of the measurement
122        :param value_unit: a string containing the final desired unit
123        :param default_unit: a string containing the units of the original measurement
124        :return: The magnitude of the measurement in the new units
125        """
[bc6532e]126        # (float, string, string) -> float
[def97a0]127        if has_converter and value_unit != default_unit:
[26d4864]128            data_conv_q = Converter(value_unit)
129            value = data_conv_q(value, units=default_unit)
130            new_unit = default_unit
131        else:
132            new_unit = value_unit
[e935ddb1]133        return value, new_unit
134
[2d866370]135    @staticmethod
136    def _header_fetch(headers, key):
[09a0be5]137        """
138        Pull the value of a unit defined header from a dict. Example::
139
140         d = {"Length [m]": 17}
141         self._header_fetch(d, "Length") == 17
142
143        :param header: A dictionary of values
144        :param key: A string which is a prefix for one of the keys in the dict
145        :return: The value of the dictionary for the specified key
146        """
[bc6532e]147        # (dict<string, x>, string) -> x
[388bd51]148        index = [k for k in headers.keys()
149                 if k.startswith(key)][0]
150        return headers[index]
151
[2d866370]152    @staticmethod
153    def _fetch_unit(params, key):
[09a0be5]154        """
155        Pull the unit off of a dictionary header. Example::
156
157         d = {"Length [m]": 17}
158         self._fetch_unit(d, "Length") == "m"
159
160        :param header: A dictionary of values, where the keys are strings
161        with the units for the values appended onto the string within square
162        brackets (See the example above)
163        :param key: A string with the prefix of the dictionary key whose unit
164        is being fetched
165        :return: A string containing the unit specifed in the header
166        """
[bc6532e]167        # (dict<string, _>, string) -> string
[388bd51]168        index = [k for k in params.keys()
169                 if k.startswith(key)][0]
170        unit = index.strip().split()[-1][1:-1]
171        if unit.startswith(r"\A"):
172            unit = "1/A"
173        return unit
Note: See TracBrowser for help on using the repository browser.