ViewBOA v1

../_images/ViewBOA-v1_dlg.png

ViewBOA dialog.

Summary

Load a BOA file and create the 3 BOA plots.

Properties

Name Direction Type Default Description
Year Input number 2016 Choose year
Numor Input number 0 Choose file number
CD-Distance Input number 6 Chopper Detector distance in metres

Description

The algorithm loads a BOA file using LoadSINQ v1. It produces three output workspaces, histogram N, ysum N and psdsum N, where N is the numor supplied to ViewBOA.

histogram N contains the wavelength spectrum and can be plotted using “Plot spectrum...”. The other two workspaces can be inspected with the spectrum slice viewer. psdsum N shows a beam profile on the two-dimensional detector, whereas ysum N shows the distribution of events with TOF on the x-axis and the detector x-coordinate on the y-axis, as indicated in the three images below (histogram, psdsum and ysum from left to right).

Wavelength spectrum. Beam profile. Neutron TOF distribution along x-direction of detector.

Usage

Note

To run these usage examples please first download the usage data, and add these to your path. In MantidPlot this is done using Manage User Directories.

The following code loads a BOA file and prints out information about the wavelength distribution of the neutrons.

import numpy as np

ViewBOA(2014, 61, 6)

lamdba_distribution = mtd['histogram61'].readY(0)
lambda_values = mtd['histogram61'].readX(0)

print "The wavelength spectrum is described by", len(lamdba_distribution),"points."
print "The range covered is", round(lambda_values[0], 4), "-", round(lambda_values[-1], 4), "Angstrom."
print "The maximum is located at", round(lambda_values[np.argmax(lamdba_distribution)], 4), "Angstrom."

This script leads to the following output:

The wavelength spectrum is described by 400 points.
The range covered is 0.7912 - 8.6638 Angstrom.
The maximum is located at 2.3894 Angstrom.

In addition, the three workspaces described above are available, plotting them should produce figures like the above.

Categories: Algorithms | SINQ