===== Usage ===== The easiest way to use :py:mod:`orsopy.fileio` (the module of :py:mod:`orsopy` that includes file reading and writing) to produce **metadata-rich .ort reduced reflectometry files** involves integrating this into your data reduction workflow. Early in the workflow, the :py:mod:`orsopy.fileio` should be imported and an empty :code:`orsopy.fileio.orso.Orso` header object (here we also import :py:mod:`numpy` which will be used later). .. code-block:: python import numpy as np from orsopy import fileio header = fileio.orso.Orso.empty() Having created the empty header object we can start to populate the appropriate components of it. It is generally a good idea to populate the components as particular steps occur in the reduction process. For example, if we want to identify the probing radiation as neutrons, we include this as follows. .. code-block:: python header.data_source.experiment.probe = 'neutron' Full details of the different components that can be populated can be found in the `documentation`_ here or in the `file format specification`_. Note that this specification includes information regarding the **required** and optional components to be included for a file to be considered a **valid** .ort file. It is not possible to write a .ort file without defining the columns present in the dataset, in this example we will have four columns of data, namely q, R, dR and dq (the final column is a description of the resolution function). Columns are defined as follows, using the :code:`orsopy.fileio.base.Column` and :code:`orsopy.fileio.base.ErrorColumn` class objects (note that there are other `base classes`_ that can be used for a variety of objects). .. code-block:: python q_column = fileio.base.Column(name='Qz', unit='1/angstrom', physical_quantity='wavevector transfer') r_column = fileio.base.Column(name='R', unit=None, physical_quantity='reflectivity') dr_column = fileio.base.ErrorColumn(error_of='R', error_type='uncertainty', value_is='sigma') dq_column = fileio.base.ErrorColumn(error_of='Qz', error_type='resolution', value_is='sigma') header.columns = [q_column, r_column, dr_column, dq_column] Any **required** metadata that is not included in the head will be written in the file as containing :code:`null`. Having populated the metadata, we can now ensure that the metadata is correct with the following, .. code-block:: python correct_header = fileio.orso.Orso(**header.to_dict()) This will produce a new object, if the metadata is correct. Now, we then want to assign the data that we want to write (this will be after your data reduction has been performed). This is achieved by producing a :code:`fileio.orso.OrsoDataset` object, which takes the header and the relevant data columns (below these are :code:`q`, :code:`R`, :code:`dR`, and :code:`dq`) as inputs. .. code-block:: python dataset = fileio.orso.OrsoDataset(info=header, data=np.array([q, R, dR, dq]).T) The dataset can then be saved with the following function, where :code:`'my_file.ort'` is the name for the file to be saved under. .. code-block:: python fileio.orso.save_orso(datasets=[dataset], fname='my_file.ort') Note that if you want to save more than one dataset in a single file, this can be achieved by including these in the list that is passed to this function. .. _`documentation`: ./modules.html#fileio .. _`file format specification`: https://www.reflectometry.org/file_format/specification .. _`base classes`: ./orsopy.fileio.base.html