Skip to content
Snippets Groups Projects
Commit fda5204c authored by Alex Buts's avatar Alex Buts
Browse files

refs #5742 got rid of annoying warning in Kernel TimeSerires property

when getValues instantiated for bool. Do not know if the resulting function is correct but not more wrong then the previous one.
parent 66d24a59
No related merge requests found
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
#include "MantidAPI/Workspace.h" #include "MantidAPI/Workspace.h"
#include "MantidAPI/Column.h" #include "MantidAPI/Column.h"
#include "MantidKernel/V3D.h" #include "MantidKernel/V3D.h"
#include "MantidKernel/PropertyManager.h"
#include <boost/shared_ptr.hpp> #include <boost/shared_ptr.hpp>
#include <boost/lexical_cast.hpp> #include <boost/lexical_cast.hpp>
...@@ -125,7 +125,7 @@ public: ...@@ -125,7 +125,7 @@ public:
// ===================================================================================== // =====================================================================================
class ITableWorkspace_DllExport ITableWorkspace: public API::Workspace class ITableWorkspace_DllExport ITableWorkspace: public API::Workspace, virtual public PropertyManager
{ {
public: public:
/// Virtual destructor. /// Virtual destructor.
......
...@@ -6,6 +6,7 @@ ...@@ -6,6 +6,7 @@
//---------------------------------------------------------------------- //----------------------------------------------------------------------
#include "MantidKernel/System.h" #include "MantidKernel/System.h"
#include "MantidKernel/PropertyManager.h"
#include "MantidAPI/ITableWorkspace.h" #include "MantidAPI/ITableWorkspace.h"
#include "MantidDataObjects/TableColumn.h" #include "MantidDataObjects/TableColumn.h"
#include <boost/shared_ptr.hpp> #include <boost/shared_ptr.hpp>
...@@ -406,6 +407,8 @@ private: ...@@ -406,6 +407,8 @@ private:
/// Logger /// Logger
static Kernel::Logger& g_log; static Kernel::Logger& g_log;
Kernel::PropertyManager_sptr m_TableProperties;
}; };
/// Typedef for a shared pointer to \c TableWorkspace /// Typedef for a shared pointer to \c TableWorkspace
......
...@@ -224,7 +224,8 @@ namespace Mantid ...@@ -224,7 +224,8 @@ namespace Mantid
TYPE getSingleValue(const DateAndTime& t, int& index) const; TYPE getSingleValue(const DateAndTime& t, int& index) const;
/// Returns total value, added up for all times regardless of filter /// Returns total value, added up for all times regardless of filter
TYPE getTotalValue() const; TYPE getTotalValue() const;
//template<typename U,typename TYPE> U getTotalValue() const; //template<> int TimeSeriesProperty<bool>::getTotalValue() const;
/// Returns n-th valid time interval, in a very inefficient way. /// Returns n-th valid time interval, in a very inefficient way.
TimeInterval nthInterval(int n) const; TimeInterval nthInterval(int n) const;
......
...@@ -961,7 +961,7 @@ namespace Mantid ...@@ -961,7 +961,7 @@ namespace Mantid
* Returns total value, added up for all times regardless of filter * Returns total value, added up for all times regardless of filter
* @return Total value from all times * @return Total value from all times
*/ */
template<typename TYPE> template<typename TYPE>
TYPE TimeSeriesProperty<TYPE>::getTotalValue() const TYPE TimeSeriesProperty<TYPE>::getTotalValue() const
{ {
TYPE total = 0; TYPE total = 0;
...@@ -973,18 +973,18 @@ namespace Mantid ...@@ -973,18 +973,18 @@ namespace Mantid
return total; return total;
} }
/* template<> template<>
int TimeSeriesProperty<bool>::getTotalValue() const bool TimeSeriesProperty<bool>::getTotalValue() const
{ {
int total = 0; if(m_values.size()==0)return false;
bool total = m_values[0].value();
for (size_t i = 0; i < m_values.size(); ++i) for (size_t i = 1; i < m_values.size(); ++i)
{ {
if(m_values[i].value())total++; total&=m_values[i].value();
} }
return total; return total;
}*/ }
/** Returns n-th valid time interval, in a very inefficient way. /** Returns n-th valid time interval, in a very inefficient way.
......
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