Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
mantid
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mantidproject
mantid
Commits
910ea285
Commit
910ea285
authored
6 years ago
by
Antti Soininen
Browse files
Options
Downloads
Patches
Plain Diff
directtools: add a unit test. Re #22718
parent
60a8f214
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
scripts/test/directtools/DirectToolsTest.py
+23
-1
23 additions, 1 deletion
scripts/test/directtools/DirectToolsTest.py
with
23 additions
and
1 deletion
scripts/test/directtools/DirectToolsTest.py
+
23
−
1
View file @
910ea285
...
@@ -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
=
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment