# Data formats _ewoks3dxrd_ works exclusively with HDF5 files, following the [NeXus](https://www.nexusformat.org/) specification. ## Input Input 3DXRD data must be stored in HDF5 files acquired by [Bliss](https://bliss.gitlab-pages.esrf.fr/bliss). More specifically, a _ewoks3dxrd_ workflow processes the data contained in a single Bliss scan. ### .par format The `.par` format is a format that can be optionally used to supply geometry parameters for the _Geometry transformation_ step. It is a simple text file where each line defines a key/value pair separated by a space. The filename must end with `.par`. _Example:_ ``` chi 0 distance 277938.9537523063 fit_tolerance 0.05 min_bin_prob 1e-05 ... ``` ### .cif format The [Crystallographic Information File](https://www.iucr.org/resources/cif) format is a standard format used in crystallography. Many crystallographic databases provide lattice files under this format. ```{warning} Ewoks3DXRD only supports CIF files where the `space group` is a number. If your CIF file include a non-number space group, please edit it to change the space group string to the equivalent number. Also, note that Ewoks3DXRD will only read lattice parameters from CIF files (`a`, `b`, `c`, `alpha`, `beta`, `gamma` and `space group`). ``` (output)= ## Output _ewoks3dxrd_ stores data in a specific folder, named the **analysis folder**, chosen in the first workflow task. In this folder, all results will be stored in a HDF5 file in a path that depends on the Bliss _sample_ and _dataset_ name. More specifically, the file will be named `_.h5` and be located in a folder named ` / _`, mirroring the `RAW_DATA` structure. ```{admonition} Example If the raw data file is named `Al_first_rotation.h5`, the output file will be at `/Al/Al_first_rotation/Al_first_rotation.h5` ``` Each task of the workflow will save data in this file under its own `NXprocess` group under a `NXentry` named after the scan number (see example below). ![Image showing a HDF5 file with all groups produced by Ewoks3DXRD](_static/tuto/final_hdf5.png) ```{warning} _ewoks3dxrd_ may also store additional `.par` files in the analysis folder such as geometry or lattice files. We advise to not modify or delete these files as it may interfere with _ewoks3dxrd_ normal operation. ```