[eb98f24] | 1 | """ |
---|
| 2 | NXcanSAS 1/2D data reader for writing HDF5 formatted NXcanSAS files. |
---|
| 3 | """ |
---|
| 4 | |
---|
| 5 | import h5py |
---|
| 6 | import numpy as np |
---|
| 7 | import re |
---|
| 8 | import os |
---|
| 9 | |
---|
| 10 | from sas.sascalc.dataloader.readers.cansas_reader_HDF5 import Reader as Cansas2Reader |
---|
| 11 | from sas.sascalc.dataloader.data_info import Data1D, Data2D |
---|
| 12 | |
---|
| 13 | class NXcanSASWriter(Cansas2Reader): |
---|
| 14 | """ |
---|
| 15 | A class for writing in NXcanSAS data files. Any number of data sets may be |
---|
| 16 | written to the file. Currently 1D and 2D SAS data sets are supported |
---|
| 17 | |
---|
| 18 | NXcanSAS spec: http://download.nexusformat.org/sphinx/classes/contributed_definitions/NXcanSAS.html |
---|
| 19 | |
---|
| 20 | :Dependencies: |
---|
| 21 | The NXcanSAS writer requires h5py => v2.5.0 or later. |
---|
| 22 | """ |
---|
| 23 | |
---|
[fe498b83] | 24 | def write(self, dataset, filename): |
---|
[eb98f24] | 25 | """ |
---|
| 26 | Write an array of Data1d or Data2D objects to an NXcanSAS file, as |
---|
| 27 | one SASEntry with multiple SASData elements. The metadata of the first |
---|
| 28 | elememt in the array will be written as the SASentry metadata |
---|
| 29 | (detector, instrument, sample, etc). |
---|
| 30 | |
---|
| 31 | :param dataset: A list of Data1D or Data2D objects to write |
---|
| 32 | :param filename: Where to write the NXcanSAS file |
---|
| 33 | """ |
---|
| 34 | |
---|
| 35 | def _h5_string(string): |
---|
| 36 | """ |
---|
| 37 | Convert a string to a numpy string in a numpy array. This way it is |
---|
| 38 | written to the HDF5 file as a fixed length ASCII string and is |
---|
| 39 | compatible with the Reader read() method. |
---|
| 40 | """ |
---|
| 41 | if not isinstance(string, str): |
---|
| 42 | string = str(string) |
---|
| 43 | |
---|
| 44 | return np.array([np.string_(string)]) |
---|
| 45 | |
---|
| 46 | def _h5_float(x): |
---|
| 47 | if not (isinstance(x, list)): |
---|
| 48 | x = [x] |
---|
| 49 | return np.array(x, dtype=np.float32) |
---|
| 50 | |
---|
| 51 | valid_data = all([issubclass(d.__class__, (Data1D, Data2D)) for d in dataset]) |
---|
| 52 | if not valid_data: |
---|
| 53 | raise ValueError("All entries of dataset must be Data1D or Data2D objects") |
---|
| 54 | |
---|
| 55 | # Get run name and number from first Data object |
---|
| 56 | data_info = dataset[0] |
---|
| 57 | run_number = '' |
---|
| 58 | run_name = '' |
---|
| 59 | if len(data_info.run) > 0: |
---|
| 60 | run_number = data_info.run[0] |
---|
| 61 | if len(data_info.run_name) > 0: |
---|
| 62 | run_name = data_info.run_name[run_number] |
---|
| 63 | |
---|
| 64 | f = h5py.File(filename, 'w') |
---|
| 65 | sasentry = f.create_group('sasentry01') |
---|
| 66 | sasentry['definition'] = _h5_string('NXcanSAS') |
---|
| 67 | sasentry['run'] = _h5_string(run_number) |
---|
| 68 | sasentry['run'].attrs['name'] = run_name |
---|
| 69 | sasentry['title'] = _h5_string(data_info.title) |
---|
| 70 | sasentry.attrs['canSAS_class'] = 'SASentry' |
---|
| 71 | sasentry.attrs['version'] = '1.0' |
---|
| 72 | |
---|
| 73 | i = 1 |
---|
| 74 | |
---|
| 75 | for data_obj in dataset: |
---|
| 76 | data_entry = sasentry.create_group("sasdata{0:0=2d}".format(i)) |
---|
| 77 | data_entry.attrs['canSAS_class'] = 'SASdata' |
---|
| 78 | if isinstance(data_obj, Data1D): |
---|
| 79 | self._write_1d_data(data_obj, data_entry) |
---|
| 80 | elif isinstance(data_obj, Data2D): |
---|
[fe498b83] | 81 | self._write_2d_data(data_obj, data_entry) |
---|
[eb98f24] | 82 | i += 1 |
---|
| 83 | |
---|
| 84 | data_info = dataset[0] |
---|
| 85 | sample_entry = sasentry.create_group('sassample') |
---|
| 86 | sample_entry.attrs['canSAS_class'] = 'SASsample' |
---|
| 87 | sample_entry['name'] = _h5_string(data_info.sample.name) |
---|
| 88 | sample_attrs = ['thickness', 'temperature'] |
---|
| 89 | for key in sample_attrs: |
---|
| 90 | if getattr(data_info.sample, key) is not None: |
---|
| 91 | sample_entry.create_dataset(key, |
---|
| 92 | data=np.array([getattr(data_info.sample, key)])) |
---|
| 93 | |
---|
| 94 | instrument_entry = sasentry.create_group('sasinstrument') |
---|
| 95 | instrument_entry.attrs['canSAS_class'] = 'SASinstrument' |
---|
| 96 | instrument_entry['name'] = _h5_string(data_info.instrument) |
---|
| 97 | |
---|
| 98 | source_entry = instrument_entry.create_group('sassource') |
---|
| 99 | source_entry.attrs['canSAS_class'] = 'SASsource' |
---|
| 100 | if data_info.source.radiation is None: |
---|
| 101 | source_entry['radiation'] = _h5_string('neutron') |
---|
| 102 | else: |
---|
| 103 | source_entry['radiation'] = _h5_string(data_info.source.radiation) |
---|
| 104 | |
---|
| 105 | if len(data_info.collimation) > 0: |
---|
| 106 | i = 1 |
---|
| 107 | for coll_info in data_info.collimation: |
---|
| 108 | collimation_entry = instrument_entry.create_group( |
---|
| 109 | 'sascollimation{0:0=2d}'.format(i)) |
---|
| 110 | collimation_entry.attrs['canSAS_class'] = 'SAScollimation' |
---|
| 111 | if coll_info.length is not None: |
---|
| 112 | collimation_entry['SDD'] = _h5_float(coll_info.length) |
---|
| 113 | collimation_entry['SDD'].attrs['units'] = coll_info.length_unit |
---|
| 114 | if coll_info.name is not None: |
---|
| 115 | collimation_entry['name'] = _h5_string(coll_info.name) |
---|
| 116 | else: |
---|
| 117 | collimation_entry = instrument_entry.create_group('sascollimation01') |
---|
| 118 | |
---|
| 119 | if len(data_info.detector) > 0: |
---|
| 120 | i = 1 |
---|
| 121 | for det_info in data_info.detector: |
---|
| 122 | detector_entry = instrument_entry.create_group( |
---|
| 123 | 'sasdetector{0:0=2d}'.format(i)) |
---|
| 124 | detector_entry.attrs['canSAS_class'] = 'SASdetector' |
---|
| 125 | if det_info.distance is not None: |
---|
| 126 | detector_entry['SDD'] = _h5_float(det_info.distance) |
---|
| 127 | detector_entry['SDD'].attrs['units'] = det_info.distance_unit |
---|
| 128 | if det_info.name is not None: |
---|
| 129 | detector_entry['name'] = _h5_string(det_info.name) |
---|
| 130 | else: |
---|
| 131 | detector_entry['name'] = _h5_string('') |
---|
| 132 | i += 1 |
---|
| 133 | else: |
---|
| 134 | detector_entry = instrument_entry.create_group('sasdetector01') |
---|
| 135 | detector_entry.attrs['canSAS_class'] = 'SASdetector' |
---|
| 136 | detector_entry.attrs['name'] = '' |
---|
| 137 | |
---|
| 138 | # TODO: implement writing SASnote |
---|
[afbd172] | 139 | i = 1 |
---|
[eb98f24] | 140 | note_entry = sasentry.create_group('sasnote{0:0=2d}'.format(i)) |
---|
| 141 | note_entry.attrs['canSAS_class'] = 'SASnote' |
---|
| 142 | |
---|
| 143 | f.close() |
---|
| 144 | |
---|
| 145 | def _write_1d_data(self, data_obj, data_entry): |
---|
| 146 | """ |
---|
| 147 | Writes the contents of a Data1D object to a SASdata h5py Group |
---|
| 148 | |
---|
| 149 | :param data_obj: A Data1D object to write to the file |
---|
| 150 | :param data_entry: A h5py Group object representing the SASdata |
---|
| 151 | """ |
---|
| 152 | data_entry.attrs['signal'] = 'I' |
---|
| 153 | data_entry.attrs['I_axes'] = 'Q' |
---|
| 154 | data_entry.attrs['I_uncertainties'] = 'Idev' |
---|
| 155 | data_entry.attrs['Q_indicies'] = 0 |
---|
| 156 | data_entry.create_dataset('Q', data=data_obj.x) |
---|
| 157 | data_entry.create_dataset('I', data=data_obj.y) |
---|
| 158 | data_entry.create_dataset('Idev', data=data_obj.dy) |
---|
| 159 | |
---|
[fe498b83] | 160 | def _write_2d_data(self, data, data_entry): |
---|
[eb98f24] | 161 | """ |
---|
| 162 | Writes the contents of a Data2D object to a SASdata h5py Group |
---|
| 163 | |
---|
| 164 | :param data: A Data2D object to write to the file |
---|
| 165 | :param data_entry: A h5py Group object representing the SASdata |
---|
| 166 | """ |
---|
| 167 | data_entry.attrs['signal'] = 'I' |
---|
| 168 | data_entry.attrs['I_axes'] = 'Q,Q' |
---|
| 169 | data_entry.attrs['I_uncertainties'] = 'Idev' |
---|
| 170 | data_entry.attrs['Q_indicies'] = [0,1] |
---|
| 171 | |
---|
[fe498b83] | 172 | (n_rows, n_cols) = (len(data.y_bins), len(data.x_bins)) |
---|
[afbd172] | 173 | |
---|
[fe498b83] | 174 | if n_rows == 0 and n_cols == 0: |
---|
[afbd172] | 175 | # Calculate rows and columns, assuming detector is square |
---|
| 176 | # Same logic as used in PlotPanel.py _get_bins |
---|
| 177 | n_cols = int(np.floor(np.sqrt(len(data.qy_data)))) |
---|
| 178 | n_rows = int(np.floor(len(data.qy_data) / n_cols)) |
---|
[eb98f24] | 179 | |
---|
[afbd172] | 180 | if n_rows * n_cols != len(data.qy_data): |
---|
| 181 | raise ValueError("Unable to calculate dimensions of 2D data") |
---|
[eb98f24] | 182 | |
---|
| 183 | I = np.reshape(data.data, (n_rows, n_cols)) |
---|
[afbd172] | 184 | dI = np.zeros((n_rows, n_cols)) |
---|
[9f4d891] | 185 | # import pdb; pdb.set_trace() |
---|
[afbd172] | 186 | if not all(data.err_data == [None]): |
---|
| 187 | dI = np.reshape(data.err_data, (n_rows, n_cols)) |
---|
[eb98f24] | 188 | qx = np.reshape(data.qx_data, (n_rows, n_cols)) |
---|
| 189 | qy = np.reshape(data.qy_data, (n_rows, n_cols)) |
---|
| 190 | I_entry = data_entry.create_dataset('I', data=I) |
---|
| 191 | I_entry.attrs['units'] = data.I_unit |
---|
| 192 | Qx_entry = data_entry.create_dataset('Qx', data=qx) |
---|
| 193 | Qx_entry.attrs['units'] = data.Q_unit |
---|
| 194 | Qy_entry = data_entry.create_dataset('Qy', data=qy) |
---|
| 195 | Qy_entry.attrs['units'] = data.Q_unit |
---|
[9f4d891] | 196 | Idev_entry = data_entry.create_dataset('Idev', data=dI) |
---|
| 197 | Idev_entry.attrs['units'] = data.I_unit |
---|