Skip to content
Snippets Groups Projects
Commit 910ea285 authored by Antti Soininen's avatar Antti Soininen
Browse files

directtools: add a unit test. Re #22718

parent 60a8f214
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,8 @@ matplotlib.use('AGG') ...@@ -7,7 +7,8 @@ matplotlib.use('AGG')
import directtools import directtools
from mantid.api import mtd from mantid.api import mtd
from mantid.simpleapi import LoadILLTOF, CreateSampleWorkspace, CreateWorkspace from mantid.simpleapi import (CreateSampleWorkspace, CreateWorkspace, DirectILLCollectData, DirectILLReduction,
LoadILLTOF)
import numpy import numpy
import numpy.testing import numpy.testing
import testhelpers import testhelpers
...@@ -247,6 +248,27 @@ class DirectTest(unittest.TestCase): ...@@ -247,6 +248,27 @@ class DirectTest(unittest.TestCase):
self.assertEquals(axes.get_xscale(), 'log') self.assertEquals(axes.get_xscale(), 'log')
self.assertEquals(axes.get_yscale(), 'log') self.assertEquals(axes.get_yscale(), 'log')
def test_plotconstE_and_plotconstQ_plot_equal_value_at_crossing(self):
DirectILLCollectData(
Run='ILL/IN4/084447',
OutputWorkspace='sample',
IncidentEnergyCalibration='Energy Calibration OFF',
FlatBkg='Flat Bkg OFF',
)
DirectILLReduction(
InputWorkspace='sample',
OutputWorkspace='reduced'
)
Q = 2.5
figure, axes, cuts = directtools.plotconstQ('reduced', Q, 0.01)
lineDataQ = axes.get_lines()[0].get_data()
E = 2.2
figure, axes, cuts = directtools.plotconstE('reduced', E, 0.01)
lineDataE = axes.get_lines()[0].get_data()
indexE = numpy.argmin(numpy.abs(lineDataQ[0] - E))
indexQ = numpy.argmin(numpy.abs(lineDataE[0] - Q))
self.assertEquals(lineDataQ[1][indexE], lineDataE[1][indexQ])
def test_plotcuts_keepCutWorkspaces(self): def test_plotcuts_keepCutWorkspaces(self):
ws = LoadILLTOF('ILL/IN4/084446.nxs', StoreInADS=False) ws = LoadILLTOF('ILL/IN4/084446.nxs', StoreInADS=False)
kwargs = { kwargs = {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment