Skip to content

Commit

Permalink
Refs #8547. Remove numerous Plus algorithm log messages.
Browse files Browse the repository at this point in the history
  • Loading branch information
arturbekasov committed Feb 27, 2014
1 parent 61c926d commit 7822bee
Showing 1 changed file with 2 additions and 0 deletions.
Expand Up @@ -405,6 +405,7 @@ Workspace_sptr sumWorkspaces(const std::vector<Workspace_sptr>& workspaces)

// Create accumulator workspace, by cloning the first one from the list
IAlgorithm_sptr cloneAlg = AlgorithmManager::Instance().create("CloneWorkspace");
cloneAlg->setLogging(false);
cloneAlg->setPropertyValue("InputWorkspace", firstEntry.name());
cloneAlg->setPropertyValue("OutputWorkspace", accumulatorEntry.name());
cloneAlg->execute();
Expand All @@ -414,6 +415,7 @@ Workspace_sptr sumWorkspaces(const std::vector<Workspace_sptr>& workspaces)
ScopedWorkspace wsEntry(*it);

IAlgorithm_sptr alg = AlgorithmManager::Instance().create("Plus");
alg->setLogging(false);
alg->setPropertyValue("LHSWorkspace", accumulatorEntry.name());
alg->setPropertyValue("RHSWorkspace", wsEntry.name());
alg->setPropertyValue("OutputWorkspace", accumulatorEntry.name());
Expand Down

0 comments on commit 7822bee

Please sign in to comment.