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
f354a436
Commit
f354a436
authored
11 years ago
by
Peterson, Peter
Browse files
Options
Downloads
Patches
Plain Diff
Re #8260. Use EventWorkspace->setAllX when possible.
parent
770067bb
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Code/Mantid/Framework/Algorithms/src/ResampleX.cpp
+52
-15
52 additions, 15 deletions
Code/Mantid/Framework/Algorithms/src/ResampleX.cpp
with
52 additions
and
15 deletions
Code/Mantid/Framework/Algorithms/src/ResampleX.cpp
+
52
−
15
View file @
f354a436
...
...
@@ -310,6 +310,33 @@ namespace Algorithms
if
(
!
error
.
empty
())
throw
std
::
runtime_error
(
error
);
bool
common_limits
=
true
;
{
double
xmin_common
=
xmins
[
0
];
double
xmax_common
=
xmaxs
[
0
];
for
(
size_t
i
=
1
;
i
<
xmins
.
size
();
++
i
)
{
if
(
xmins
[
i
]
!=
xmin_common
)
{
common_limits
=
false
;
break
;
}
if
(
xmaxs
[
i
]
!=
xmax_common
)
{
common_limits
=
false
;
break
;
}
}
}
if
(
common_limits
)
{
g_log
.
debug
()
<<
"Common limits between all spectra
\n
"
;
}
else
{
g_log
.
debug
()
<<
"Does not have common limits between all spectra
\n
"
;
}
// start doing actual work
EventWorkspace_const_sptr
inputEventWS
=
boost
::
dynamic_pointer_cast
<
const
EventWorkspace
>
(
inputWS
);
if
(
inputEventWS
!=
NULL
)
...
...
@@ -334,22 +361,33 @@ namespace Algorithms
outputEventWS
->
copyDataFrom
(
(
*
inputEventWS
)
);
}
// initialize progress reporting.
Progress
prog
(
this
,
0.0
,
1.0
,
numSpectra
);
// do the rebinning
PARALLEL_FOR2
(
inputEventWS
,
outputWS
)
for
(
int
wkspIndex
=
0
;
wkspIndex
<
numSpectra
;
++
wkspIndex
)
if
(
common_limits
)
{
PARALLEL_START_INTERUPT_REGION
MantidVec
xValues
;
double
delta
=
this
->
determineBinning
(
xValues
,
xmins
[
wkspIndex
],
xmaxs
[
wkspIndex
]);
g_log
.
debug
()
<<
"delta[wkspindex="
<<
wkspIndex
<<
"] = "
<<
delta
<<
"
\n
"
;
outputEventWS
->
getSpectrum
(
wkspIndex
)
->
setX
(
xValues
);
prog
.
report
(
name
());
//Report progress
PARALLEL_END_INTERUPT_REGION
// get the delta from the first since they are all the same
MantidVecPtr
xValues
;
double
delta
=
this
->
determineBinning
(
xValues
.
access
(),
xmins
[
0
],
xmaxs
[
0
]);
g_log
.
debug
()
<<
"delta = "
<<
delta
<<
"
\n
"
;
outputEventWS
->
setAllX
(
xValues
);
}
else
{
// initialize progress reporting.
Progress
prog
(
this
,
0.0
,
1.0
,
numSpectra
);
// do the rebinning
PARALLEL_FOR2
(
inputEventWS
,
outputWS
)
for
(
int
wkspIndex
=
0
;
wkspIndex
<
numSpectra
;
++
wkspIndex
)
{
PARALLEL_START_INTERUPT_REGION
MantidVec
xValues
;
double
delta
=
this
->
determineBinning
(
xValues
,
xmins
[
wkspIndex
],
xmaxs
[
wkspIndex
]);
g_log
.
debug
()
<<
"delta[wkspindex="
<<
wkspIndex
<<
"] = "
<<
delta
<<
"
\n
"
;
outputEventWS
->
getSpectrum
(
wkspIndex
)
->
setX
(
xValues
);
prog
.
report
(
name
());
//Report progress
PARALLEL_END_INTERUPT_REGION
}
PARALLEL_CHECK_INTERUPT_REGION
}
PARALLEL_CHECK_INTERUPT_REGION
this
->
setProperty
(
"OutputWorkspace"
,
boost
::
dynamic_pointer_cast
<
MatrixWorkspace
>
(
outputEventWS
));
}
// end if (m_preserveEvents)
...
...
@@ -363,7 +401,6 @@ namespace Algorithms
// The Workspace2D is created with an EMPTY CONSTRUCTOR
outputWS
=
WorkspaceFactory
::
Instance
().
create
(
"Workspace2D"
,
numSpectra
,
m_numBins
,
m_numBins
-
1
);
WorkspaceFactory
::
Instance
().
initializeFromParent
(
inputWS
,
outputWS
,
true
);
//Initialize progress reporting.
Progress
prog
(
this
,
0.0
,
1.0
,
numSpectra
);
...
...
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