Skip to content
Snippets Groups Projects
Commit 75a5ee3d authored by Zhou, Wenduo's avatar Zhou, Wenduo
Browse files

Refs #19703. Fixed the bug.

parent fc499ff6
No related branches found
No related tags found
No related merge requests found
......@@ -323,11 +323,14 @@ void AlignAndFocusPowder::exec() {
// Now setup the output workspace
m_outputW = getProperty("OutputWorkspace");
if (m_inputEW) {
// event workspace
if (m_outputW != m_inputW) {
// out-of-place: clone the input EventWorkspace
m_outputEW = m_inputEW->clone();
}
m_outputEW = boost::dynamic_pointer_cast<EventWorkspace>(m_outputW);
m_outputW = boost::dynamic_pointer_cast<EventWorkspace>(m_outputEW);
} else {
// workspace2D
if (m_outputW != m_inputW) {
m_outputW = WorkspaceFactory::Instance().create(m_inputW);
}
......
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