Newer
Older
Owen Arnold
committed
#include "MantidVatesAPI/vtkThresholdingLineFactory.h"
#include "vtkCellArray.h"
#include "vtkCellData.h"
#include "vtkFloatArray.h"
#include "vtkSmartPointer.h"
#include "vtkLine.h"
#include <vector>
Owen Arnold
committed
#include <boost/math/special_functions/fpclassify.hpp>
Janik Zikovsky
committed
#include "MantidAPI/IMDWorkspace.h"
#include "MantidAPI/NullCoordTransform.h"
#include "MantidMDEvents/MDHistoWorkspace.h"
#include "MantidKernel/ReadLock.h"
Janik Zikovsky
committed
using Mantid::API::IMDWorkspace;
using Mantid::MDEvents::MDHistoWorkspace;
using Mantid::API::NullCoordTransform;
Owen Arnold
committed
namespace Mantid
{
namespace VATES
{
vtkMDHistoLineFactory::vtkMDHistoLineFactory(ThresholdRange_scptr thresholdRange, const std::string& scalarName) : m_scalarName(scalarName),
m_thresholdRange(thresholdRange)
Owen Arnold
committed
{
}
Owen Arnold
committed
/**
Assigment operator
@param other : vtkMDHistoLineFactory to assign to this instance from.
Owen Arnold
committed
@return ref to assigned current instance.
*/
vtkMDHistoLineFactory& vtkMDHistoLineFactory::operator=(const vtkMDHistoLineFactory& other)
Owen Arnold
committed
{
if(this != &other)
{
this->m_scalarName = other.m_scalarName;
this->m_thresholdRange = other.m_thresholdRange;
Owen Arnold
committed
this->m_workspace = other.m_workspace;
}
return *this;
}
/**
Copy Constructor
@param other : instance to copy from.
*/
vtkMDHistoLineFactory::vtkMDHistoLineFactory(const vtkMDHistoLineFactory& other)
Owen Arnold
committed
{
this->m_scalarName = other.m_scalarName;
this->m_thresholdRange = other.m_thresholdRange;
Owen Arnold
committed
this->m_workspace = other.m_workspace;
}
vtkDataSet* vtkMDHistoLineFactory::create() const
Owen Arnold
committed
{
vtkDataSet* product = tryDelegatingCreation<MDHistoWorkspace, 1>(m_workspace);
if(product != NULL)
Owen Arnold
committed
{
Owen Arnold
committed
}
else
{
Mantid::Kernel::ReadLock lock(*m_workspace);
Owen Arnold
committed
const int nBinsX = static_cast<int>( m_workspace->getXDimension()->getNBins() );
const double maxX = m_workspace-> getXDimension()->getMaximum();
const double minX = m_workspace-> getXDimension()->getMinimum();
double incrementX = (maxX - minX) / (nBinsX-1);
const int imageSize = nBinsX;
vtkPoints *points = vtkPoints::New();
points->Allocate(static_cast<int>(imageSize));
vtkFloatArray * signal = vtkFloatArray::New();
signal->Allocate(imageSize);
signal->SetName(m_scalarName.c_str());
signal->SetNumberOfComponents(1);
UnstructuredPoint unstructPoint;
float signalScalar;
Owen Arnold
committed
const int nPointsX = nBinsX;
Column column(nPointsX);
NullCoordTransform transform;
//Mantid::API::CoordTransform* transform = m_workspace->getTransformFromOriginal();
Owen Arnold
committed
Mantid::coord_t in[3];
Mantid::coord_t out[3];
Owen Arnold
committed
//Loop through dimensions
for (int i = 0; i < nPointsX; i++)
{
in[0] = minX + (static_cast<coord_t>(i) * incrementX); //Calculate increment in x;
Owen Arnold
committed
signalScalar = static_cast<float>(m_workspace->getSignalNormalizedAt(i));
Owen Arnold
committed
if (boost::math::isnan( signalScalar ) || !m_thresholdRange->inRange(signalScalar))
Owen Arnold
committed
{
//Flagged so that topological and scalar data is not applied.
unstructPoint.isSparse = true;
}
else
{
if (i < (nBinsX -1))
{
signal->InsertNextValue(static_cast<float>(signalScalar));
Owen Arnold
committed
}
unstructPoint.isSparse = false;
}
Owen Arnold
committed
transform.apply(in, out);
Owen Arnold
committed
unstructPoint.pointId = points->InsertNextPoint(out);
Owen Arnold
committed
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
column[i] = unstructPoint;
}
points->Squeeze();
signal->Squeeze();
vtkUnstructuredGrid *visualDataSet = vtkUnstructuredGrid::New();
visualDataSet->Allocate(imageSize);
visualDataSet->SetPoints(points);
visualDataSet->GetCellData()->SetScalars(signal);
for (int i = 0; i < nBinsX - 1; i++)
{
//Only create topologies for those cells which are not sparse.
if (!column[i].isSparse)
{
vtkLine* line = vtkLine::New();
line->GetPointIds()->SetId(0, column[i].pointId);
line->GetPointIds()->SetId(1, column[i + 1].pointId);
visualDataSet->InsertNextCell(VTK_LINE, line->GetPointIds());
}
}
points->Delete();
signal->Delete();
visualDataSet->Squeeze();
return visualDataSet;
}
}
void vtkMDHistoLineFactory::initialize(Mantid::API::Workspace_sptr wspace_sptr)
Owen Arnold
committed
{
m_workspace = this->doInitialize<MDHistoWorkspace, 1>(wspace_sptr);
//Setup range values according to whatever strategy object has been injected.
m_thresholdRange->setWorkspace(m_workspace);
m_thresholdRange->calculate();
Owen Arnold
committed
}
void vtkMDHistoLineFactory::validate() const
Owen Arnold
committed
{
if(NULL == m_workspace.get())
{
throw std::runtime_error("IMDWorkspace is null");
}
}
vtkMDHistoLineFactory::~vtkMDHistoLineFactory()
Owen Arnold
committed
{
}
}