DAQ Viewer¶
This module is to be used to interface any detector. It will display hardware settings and display data as exported by the hardware plugins (see Emission of data). The default detector is a Mock ones (a kind of software based detector generating data and useful to test the program development). Other detectors may be loaded as plugins, see Plugins.
Introduction¶
This module has a generic interface comprised of a dockable panel related to the settings and one or more viewers specific of the type of data to be acquired (see Data Viewers. For instance, Fig. 7 displays a typical DAQ_Viewer GUI with a settings dockable panel (left) and a 2D viewer on the right panel.
Fig. 7 Typical DAQ_Viewer GUI with a dockable panel for settings (left) and a 2D viewer on the right panel.
Settings¶
The settings panel is comprised of 2 sections, the top one displays buttons to select a given hardware (DAQ type and Detector), initialize it, grab and save data. The bottom one, Fig. 8, is a Tree type parameter list displaying the viewer main settings (Main settings) and specific settings of the chosen hardware (see Hardware Settings).
Hardware initialization¶
DAQ_type: either DAQ0D, DAQ1D or DAQ2D respectively for scalar detectors (powermeter for instance), vector detectors (spectrometer for instance) and image like detectors.Detector: list of available hardware plugins of the DAQ_type type.Ini. Det: Initialize the hardware with the given settings (see Plugins for details on how to set hardware settings.)Quit: De-initialize the hardware and quit the application
Data Acquisition¶
: Start a continuous grabing of data. Detector must be initialized.
: Start a single grab (snap). Mandatory for the first time data is acquired after initialization.
: Save current data
: Do a new snap and then save the data
: Load data previously saved with the save button: Display or hide the settings Tree
: try to refresh the hardware, for instance the list of COM ports
: do a specific snap where the data will be saved as a background
: use the background previously saved to correct the displayed (only displayed, saved data are still raw data) datas.
: Save in a file the current settings in a file for later recall
: Recall from a file the settings
The last two options are useful only in stand alone mode. When used with the DAQ_Scan module, all settings are preset using the preset manager (see Preset manager).
Main settings¶
The first tree section in the settings refers to the acquisition options. The first two items are just a reminder of the type of detector currently activated.
Fig. 8 Typical DAQ_Viewer Main settings.
- DAQ type: readonly string recalling the DAQ type used
- Detector type: readonly string recalling the selected plugin
- Nviewers: readonly integer displaying the number of data viewers
- Controller ID: integer used to deal with a controller controlling multiple hardware, see Multiple hardware from one controller
- Naverage: integer to set in order to do data averaging, see Hardware averaging:.
- Show averaging: in the case of software averaging (see Hardware averaging:), if this is set to
True, intermediate averaging data will be displayed - Live averaging: show averaging must be set tot
False. If set toTrue, a livegrabwill perform non-stop averaging (current averaging value will be displayed just below). Could be used to check how much one should average, then set Naverage to this value - Wait time (ms): Extra waiting time before sending data to viewer, can be used to cadence DAQ_Scan execution, or data logging
- Continuous saving: useful for data logging. Will display new options below in order to set a h5 file to log live data, see Continuous Saving.
- Overshoot options: useful to protect the experiment. If this is activated, then as soon as any value of the datas exported by this
detector reaches the overshoot value, the module will throw a
overshoot_signal(boolean PyQtSignal) that will stop the DAQ_Scan execution right away. Other features related will soon be added (action triggered on a DAQ_Move, for instance a shutter on a laser beam) - Axis options: only valid for 2D detector. You can add labels, units, scaling and offset (with respect to pixels) to both x and y axis of the detector. Redundant with the plugin data export feature (see Emission of data)