Colberto Tremblay
Software to control Colberto
|
This page includes the documentation of the Colberto controll software. Let's hope that it grows rapidly, such that new people can quickly join the developper team.
The general structure is based on the layout presented in pyqt-framework. A minimal working framework is available in github and will constantly grow.
Before you start contributing, make sure you read through our contribution guide
General considerations for DataHandling: We decided to use .hdf5 files for data storage. These files are hierarchical files that contain structures that can include groups, attributes and datasets. In the following, it is discussed how to assign them to the requirements of Colbert measurements. DataHandling will have three main tasks: (1) It has to provide a large buffer of hardware parameters that have to be able to be accessed fast and at all times from both the measurement routines and the ParameterPlot. (2) It needs to store the experimental data and be able to handle large data. (3) It needs to store and provide access to all calibration data. Three kinds of data storage is thus required.
Spectra: For easy access, spectra with parameters should be saved as one data frame. Groups for several measurement conditions can be created, where each group should contain a dataset that looks like:
Meas1 | Meas2 | ... | |
---|---|---|---|
Parameter1 | |||
Parameter2 | |||
Spec idx1 | |||
Spec idx1 | |||
... |
The corresponding x-axis should be stored as an attribute. Also, the type of measurement can be stored as attribute.
Calibrations: Since we want to be able to load them independently, we should store them independent .hdf5 files. Each individual calibration should be a separate group with its own data and attributes.
Parameters: Should be saved as one big .hdf5 file that contains one dataset. Different attributes can be