Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Whitfield, Ross
wand
Commits
7cb838fc
Commit
7cb838fc
authored
Aug 02, 2018
by
Whitfield, Ross
Browse files
Update IPTS-21442/make_4D_temp.py
parent
11ad91c6
Changes
1
Hide whitespace changes
Inline
Side-by-side
IPTS-21442/make_4D_temp.py
View file @
7cb838fc
import
numpy
as
np
for
t
in
range
(
5
,
30
):
runNumbers
=
'{}-{}'
.
format
(
95409
+
122
*
(
t
-
5
),
95530
+
122
*
(
t
-
5
))
print
(
t
,
runNumbers
)
...
...
@@ -10,6 +12,14 @@ for t in range(5,30):
OutputWorkspace
=
'{}K'
.
format
(
t
))
DeleteWorkspace
(
'data_{}K'
.
format
(
t
))
base
=
CreateMDHistoWorkspace
(
4
,
SignalInput
=
[
0
]
*
61
*
61
*
21
,
ErrorInput
=
[
0
]
*
61
*
61
*
21
,
Extents
=
[
-
0.1525
,
0.1525
,
0.8475
,
1.1525
,
-
0.025
,
1.025
,
4.5
,
5.5
],
NumberOfBins
=
[
61
,
61
,
21
,
1
],
Names
=
[
'[H,0,0]'
,
'[0,K,0]'
,
'[0,0,L]'
,
'temperature'
],
Units
=
'A^-1,A^-1,A^-1,C'
)
output
=
CreateMDHistoWorkspace
(
4
,
SignalInput
=
[
0
]
*
61
*
61
*
21
*
25
,
ErrorInput
=
[
0
]
*
61
*
61
*
21
*
25
,
Extents
=
[
-
0.1525
,
0.1525
,
0.8475
,
1.1525
,
-
0.025
,
1.025
,
4.5
,
29.5
],
NumberOfBins
=
[
61
,
61
,
21
,
25
],
Names
=
[
'[H,0,0]'
,
'[0,K,0]'
,
'[0,0,L]'
,
'temperature'
],
Units
=
'A^-1,A^-1,A^-1,C'
)
signal
=
np
.
empty
((
61
,
61
,
21
,
25
))
for
n
,
t
in
enumerate
(
range
(
5
,
30
)):
signal
[:,:,:,
n
]
=
mtd
[
'{}K'
.
format
(
t
)].
getSignalArray
()
output
.
setSignalArray
(
signal
)
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment