Skip to content
Snippets Groups Projects
Commit 4724681b authored by Campbell, Stuart's avatar Campbell, Stuart
Browse files

Adding skeleton of new ConvertUnitsUisngDetectorTable algorithm

refs #10748
parent fa6491d9
No related branches found
No related tags found
No related merge requests found
...@@ -52,6 +52,7 @@ set ( SRC_FILES ...@@ -52,6 +52,7 @@ set ( SRC_FILES
src/ConvertToMatrixWorkspace.cpp src/ConvertToMatrixWorkspace.cpp
src/ConvertToPointData.cpp src/ConvertToPointData.cpp
src/ConvertUnits.cpp src/ConvertUnits.cpp
src/ConvertUnitsUsingDetectorTable.cpp
src/CopyDetectorMapping.cpp src/CopyDetectorMapping.cpp
src/CopyInstrumentParameters.cpp src/CopyInstrumentParameters.cpp
src/CopyLogs.cpp src/CopyLogs.cpp
...@@ -308,6 +309,7 @@ set ( INC_FILES ...@@ -308,6 +309,7 @@ set ( INC_FILES
inc/MantidAlgorithms/ConvertToMatrixWorkspace.h inc/MantidAlgorithms/ConvertToMatrixWorkspace.h
inc/MantidAlgorithms/ConvertToPointData.h inc/MantidAlgorithms/ConvertToPointData.h
inc/MantidAlgorithms/ConvertUnits.h inc/MantidAlgorithms/ConvertUnits.h
inc/MantidAlgorithms/ConvertUnitsUsingDetectorTable.h
inc/MantidAlgorithms/CopyDetectorMapping.h inc/MantidAlgorithms/CopyDetectorMapping.h
inc/MantidAlgorithms/CopyInstrumentParameters.h inc/MantidAlgorithms/CopyInstrumentParameters.h
inc/MantidAlgorithms/CopyLogs.h inc/MantidAlgorithms/CopyLogs.h
...@@ -575,6 +577,7 @@ set ( TEST_FILES ...@@ -575,6 +577,7 @@ set ( TEST_FILES
ConvertToMatrixWorkspaceTest.h ConvertToMatrixWorkspaceTest.h
ConvertToPointDataTest.h ConvertToPointDataTest.h
ConvertUnitsTest.h ConvertUnitsTest.h
ConvertUnitsUsingDetectorTableTest.h
CopyDetectorMappingTest.h CopyDetectorMappingTest.h
CopyInstrumentParametersTest.h CopyInstrumentParametersTest.h
CopyLogsTest.h CopyLogsTest.h
......
#ifndef MANTID_ALGORITHMS_CONVERTUNITSUSINGDETECTORTABLE_H_
#define MANTID_ALGORITHMS_CONVERTUNITSUSINGDETECTORTABLE_H_
#include "MantidKernel/System.h"
#include "MantidAPI/Algorithm.h"
namespace Mantid
{
namespace Algorithms
{
/** ConvertUnitsUsingDetectorTable : Converts the units in which a workspace is represented.
Copyright © 2015 ISIS Rutherford Appleton Laboratory, NScD Oak Ridge National Laboratory & European Spallation Source
This file is part of Mantid.
Mantid is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
Mantid is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
File change history is stored at: <https://github.com/mantidproject/mantid>
Code Documentation is available at: <http://doxygen.mantidproject.org>
*/
class DLLExport ConvertUnitsUsingDetectorTable : public API::Algorithm
{
public:
ConvertUnitsUsingDetectorTable();
virtual ~ConvertUnitsUsingDetectorTable();
virtual const std::string name() const;
virtual int version() const;
virtual const std::string category() const;
virtual const std::string summary() const;
private:
void init();
void exec();
};
} // namespace Algorithms
} // namespace Mantid
#endif /* MANTID_ALGORITHMS_CONVERTUNITSUSINGDETECTORTABLE_H_ */
#include "MantidAlgorithms/ConvertUnitsUsingDetectorTable.h"
namespace Mantid
{
namespace Algorithms
{
using Mantid::Kernel::Direction;
using Mantid::API::WorkspaceProperty;
// Register the algorithm into the AlgorithmFactory
DECLARE_ALGORITHM(ConvertUnitsUsingDetectorTable)
//----------------------------------------------------------------------------------------------
/** Constructor
*/
ConvertUnitsUsingDetectorTable::ConvertUnitsUsingDetectorTable()
{
}
//----------------------------------------------------------------------------------------------
/** Destructor
*/
ConvertUnitsUsingDetectorTable::~ConvertUnitsUsingDetectorTable()
{
}
//----------------------------------------------------------------------------------------------
/// Algorithms name for identification. @see Algorithm::name
const std::string ConvertUnitsUsingDetectorTable::name() const { return "ConvertUnitsUsingDetectorTable"; }
/// Algorithm's version for identification. @see Algorithm::version
int ConvertUnitsUsingDetectorTable::version() const { return 1;}
/// Algorithm's category for identification. @see Algorithm::category
const std::string ConvertUnitsUsingDetectorTable::category() const { return "Transforms\\Units";}
/// Algorithm's summary for use in the GUI and help. @see Algorithm::summary
const std::string ConvertUnitsUsingDetectorTable::summary() const { return "Performs a unit change on the X values of a workspace";}
//----------------------------------------------------------------------------------------------
/** Initialize the algorithm's properties.
*/
void ConvertUnitsUsingDetectorTable::init()
{
declareProperty(new WorkspaceProperty<>("InputWorkspace","",Direction::Input), "An input workspace.");
declareProperty(new WorkspaceProperty<>("OutputWorkspace","",Direction::Output), "An output workspace.");
}
//----------------------------------------------------------------------------------------------
/** Execute the algorithm.
*/
void ConvertUnitsUsingDetectorTable::exec()
{
// TODO Auto-generated execute stub
}
} // namespace Algorithms
} // namespace Mantid
#ifndef MANTID_ALGORITHMS_CONVERTUNITSUSINGDETECTORTABLETEST_H_
#define MANTID_ALGORITHMS_CONVERTUNITSUSINGDETECTORTABLETEST_H_
#include <cxxtest/TestSuite.h>
#include "MantidAlgorithms/ConvertUnitsUsingDetectorTable.h"
using Mantid::Algorithms::ConvertUnitsUsingDetectorTable;
using namespace Mantid::API;
class ConvertUnitsUsingDetectorTableTest : public CxxTest::TestSuite
{
public:
// This pair of boilerplate methods prevent the suite being created statically
// This means the constructor isn't called when running other tests
static ConvertUnitsUsingDetectorTableTest *createSuite() { return new ConvertUnitsUsingDetectorTableTest(); }
static void destroySuite( ConvertUnitsUsingDetectorTableTest *suite ) { delete suite; }
void test_Init()
{
ConvertUnitsUsingDetectorTable alg;
TS_ASSERT_THROWS_NOTHING( alg.initialize() )
TS_ASSERT( alg.isInitialized() )
}
void test_exec()
{
// Name of the output workspace.
std::string outWSName("ConvertUnitsUsingDetectorTableTest_OutputWS");
ConvertUnitsUsingDetectorTable alg;
TS_ASSERT_THROWS_NOTHING( alg.initialize() )
TS_ASSERT( alg.isInitialized() )
TS_ASSERT_THROWS_NOTHING( alg.setPropertyValue("REPLACE_PROPERTY_NAME_HERE!!!!", "value") );
TS_ASSERT_THROWS_NOTHING( alg.setPropertyValue("OutputWorkspace", outWSName) );
TS_ASSERT_THROWS_NOTHING( alg.execute(); );
TS_ASSERT( alg.isExecuted() );
// Retrieve the workspace from data service. TODO: Change to your desired type
Workspace_sptr ws;
TS_ASSERT_THROWS_NOTHING( ws = AnalysisDataService::Instance().retrieveWS<Workspace>(outWSName) );
TS_ASSERT(ws);
if (!ws) return;
// TODO: Check the results
// Remove workspace from the data service.
AnalysisDataService::Instance().remove(outWSName);
}
void test_Something()
{
TSM_ASSERT( "You forgot to write a test!", 0);
}
};
#endif /* MANTID_ALGORITHMS_CONVERTUNITSUSINGDETECTORTABLETEST_H_ */
\ No newline at end of file
.. algorithm::
.. summary::
.. alias::
.. properties::
Description
-----------
TODO: Enter a full rst-markup description of your algorithm here.
Usage
-----
.. Try not to use files in your examples,
but if you cannot avoid it then the (small) files must be added to
autotestdata\UsageData and the following tag unindented
.. include:: ../usagedata-note.txt
**Example - ConvertUnitsUsingDetectorTable**
.. testcode:: ConvertUnitsUsingDetectorTableExample
# Create a host workspace
ws = CreateWorkspace(DataX=range(0,3), DataY=(0,2))
or
ws = CreateSampleWorkspace()
wsOut = ConvertUnitsUsingDetectorTable()
# Print the result
print "The output workspace has %i spectra" % wsOut.getNumberHistograms()
Output:
.. testoutput:: ConvertUnitsUsingDetectorTableExample
The output workspace has ?? spectra
.. categories::
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