The interaction with the calibration tools inside mantid is done through the tube.py file for which you can find an extensive documentation here.
Inside the python Console, all you need is to import the tube module.
import tube
Or, you may interested to import the main function calibrate directly:
from tube import calibrate
This function requires some inputs and allow for some optional parameters as well. The minimum set of parameters required are:
Below, it shows an example of a workspace:
wsToCalibrate = Load('MAP14919')
wsToCalibrate = Integration(wsToCalibrate)
# you may provide the integration limits as well
#wsToCalibrate = Integration(wsToCalibrate,lowRange,highRange)
The second step is to define what are the tubes to be calibrated (tubeSet). This parameter accepts the following inputs:
from tube_spec import TubeSpec
tubeSet = TubeSpec(wsToCalibrate)
tubeSet.setTubeSpecByString("MAPS/A1_window")
The third step is to provide the positions of the special points of the calibrated experiment along the tube. The important factor is that these positions must obey the following agreement:
The center of the tube is the origin, and the measures are given in the same measures of the 3D space (usually meters)
For example, the calibration experiment carried on MAPS instrument, you find the following data acquired on tubes as shown in the image below.
There are 5 special points that can be used to the calibration. These points must be in meters The points has a rising edge, followed by 3 Gaussian through, and finally, a final edge. These 5 points were measured and the result was:
# remember that the origin is in the center of the tube. measured in meters.
knownPositions = [-0.50, -0.16, 0.0, 0.16, 0.50]
# the shape of these points: edge, Gaussian, Gaussian, Gaussian, edge
funcForm = [2, 1, 1, 1, 2]
The calibrate function returns a Calibration Table that will be used to calibrate the instrument, providing, for each detector, its correct position.
calibTable = calibrate(wsToCalibrate, 'MAPS/A1_window', knownPositions, funcForm)
With the given calibration table, the ApplyCalibration algorithm is called to move those detectors.
ApplyCalibration(wsToCalibrate, calibTable)
A more extensive description of the options is found at here.
A set of optional parameters are available for the calibrate function for the sake of flexibility, to improve results.
The calibration heavily depends on the estimation of the peaks position, when this step does not perform well, the calibration provides bad results.
There are some parameters that help the calibration tool to better find the peaks, they are: fitPar and margin. margin defines a window around the peak to fit while fitPar is a TubeCalibFitParams object that keeps information of peaks center in pixels, and some other parameters that are passed to the fitting functions.
The plotTube allows to output the data acquired and fitted as workspaces for each tube. That allows the creation of plots like this
The calibTable option allow to concatenate results of sequential calibration.
The outputPeak makes the calibrate to provide the peaks table, which are the position for the peaks for each tube.
All these options are explored and used inside the examples.
def savePositions2TxtFileFromCalibTable(calibTable, file_path):
tofile = open(file_path,'w')
for row in calibTable:
print >> tofile, row['Detector ID'], row['Detector Position']
tofile.close()
def savePositions2TxtFileFromWorkspace( ws, file_path):
tofile = open(file_path, 'w')
det_pos = [ws.getDetector(i).getPos() for i in range(ws.getNumberHistograms()) if not ws.getDetector(i).isMonitor()]
for det in det_pos:
print >> tofile, det
tofile.close()
import numpy as np
def getDetPositionsFromFile(file_path):
return np.loadtxt(file_path, delimiter=',')
Category: Calibration