Skip to content

Commit

Permalink
Use matrix workspace properties
Browse files Browse the repository at this point in the history
Refs #11125
  • Loading branch information
DanNixon committed Feb 20, 2015
1 parent 6645db6 commit bf0c7a2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Code/Mantid/Framework/Algorithms/src/CopyDetectorMapping.cpp
Expand Up @@ -14,10 +14,10 @@ using namespace API;

void CopyDetectorMapping::init() {
declareProperty(
new WorkspaceProperty<>("WorkspaceToMatch", "", Direction::Input));
new WorkspaceProperty<MatrixWorkspace>("WorkspaceToMatch", "", Direction::Input));

declareProperty(
new WorkspaceProperty<>("WorkspaceToRemap", "", Direction::InOut));
new WorkspaceProperty<MatrixWorkspace>("WorkspaceToRemap", "", Direction::InOut));

declareProperty(
new PropertyWithValue<bool>("IndexBySpectrumNumber", false, Direction::Input),
Expand Down

0 comments on commit bf0c7a2

Please sign in to comment.