Skip to content

Commit

Permalink
refs #4471. Disable managed/unmanaged checking
Browse files Browse the repository at this point in the history
  • Loading branch information
OwenArnold committed Mar 14, 2012
1 parent 884e1b3 commit 72aa442
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions Code/Mantid/Framework/Algorithms/src/SmoothNeighbours.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -533,19 +533,6 @@ void SmoothNeighbours::exec()
// Get the input workspace
inWS = getProperty("InputWorkspace");



/*
As a temporary measure, use with managed workspaces is disabled see #4471
*/
std::string typeName = typeid(*inWS.get()).name();
std::cout << "type name: " << typeName << std::endl;
boost::regex query("^(.*)managed(.*)$",boost::regex::icase);
if (boost::regex_match(typeName, query))
{
//throw std::invalid_argument("SmoothNeighbours algorithm cannot be used with Managed Workspaces");
}

// Retrieve the optional properties
double enteredRadius = getProperty("Radius");

Expand Down

0 comments on commit 72aa442

Please sign in to comment.