Skip to content
Snippets Groups Projects
Commit 0c4e9c53 authored by Jose Borreguero's avatar Jose Borreguero
Browse files

Refs #5827 try Itransformscale and children only

parent a2670ed1
No related merge requests found
......@@ -3,7 +3,7 @@ set ( SRC_FILES
# src/GridDomain1D.cpp
# src/TransformScaleFactory.cpp
src/LinearScale.cpp
# src/LogarithmScale.cpp
src/LogarithmScale.cpp
src/Algorithm.cpp
src/AlgorithmFactory.cpp
src/AlgorithmHasProperty.cpp
......@@ -120,7 +120,7 @@ set ( INC_FILES
inc/MantidAPI/ITransformScale.h
# inc/MantidAPI/TransformScaleFactory.h
inc/MantidAPI/LinearScale.h
# inc/MantidAPI/LogarithmScale.h
inc/MantidAPI/LogarithmScale.h
inc/MantidAPI/Algorithm.h
inc/MantidAPI/AlgorithmFactory.h
inc/MantidAPI/AlgorithmHasProperty.h
......
......@@ -50,7 +50,7 @@ public:
virtual void transform( std::vector<double> &gd ) = 0;
protected:
static Kernel::Logger& g_log;
static Mantid::Kernel::Logger& g_log;
}; // class ITransformScale
/// typedef for a shared pointer
......
......@@ -45,7 +45,7 @@ class MANTID_API_DLL LogarithmScale : public ITransformScale
{
public:
LogarithmScale() : m_base(M_E) {};
~LogarithmScale();
~LogarithmScale() {};
const std::string name() const { return "LogarithmScale"; }
void transform( std::vector<double> &gd );
void setBase( double &base);
......
......@@ -13,7 +13,7 @@ namespace Mantid
namespace API
{
DECLARE_TRANSFORMSCALE(LogarithmScale);
//DECLARE_TRANSFORMSCALE(LogarithmScale);
void LogarithmScale::setBase( double &base)
{
......
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