vtk-m/vtkm/filter/FilterDataSetWithField.h

112 lines
3.9 KiB
C
Raw Normal View History

2016-01-19 14:59:31 +00:00
//============================================================================
// Copyright (c) Kitware, Inc.
// All rights reserved.
// See LICENSE.txt for details.
2019-04-15 23:24:21 +00:00
//
2016-01-19 14:59:31 +00:00
// This software is distributed WITHOUT ANY WARRANTY; without even
// the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
// PURPOSE. See the above copyright notice for more information.
//============================================================================
#ifndef vtk_m_filter_DataSetWithFieldFilter_h
#define vtk_m_filter_DataSetWithFieldFilter_h
2017-05-18 14:51:24 +00:00
#include <vtkm/cont/CoordinateSystem.h>
2016-01-19 14:59:31 +00:00
#include <vtkm/cont/DataSet.h>
#include <vtkm/cont/DynamicCellSet.h>
#include <vtkm/cont/Field.h>
#include <vtkm/cont/PartitionedDataSet.h>
2016-01-19 14:59:31 +00:00
#include <vtkm/filter/Filter.h>
2016-01-19 14:59:31 +00:00
#include <vtkm/filter/PolicyBase.h>
2017-05-18 14:29:41 +00:00
namespace vtkm
{
namespace filter
{
2016-01-19 14:59:31 +00:00
2017-05-18 14:29:41 +00:00
template <class Derived>
class FilterDataSetWithField : public vtkm::filter::Filter<Derived>
2016-01-19 14:59:31 +00:00
{
public:
VTKM_CONT
FilterDataSetWithField();
2016-01-19 14:59:31 +00:00
VTKM_CONT
~FilterDataSetWithField();
VTKM_CONT
2017-05-18 14:29:41 +00:00
void SetActiveCoordinateSystem(vtkm::Id index) { this->CoordinateSystemIndex = index; }
2016-01-19 14:59:31 +00:00
VTKM_CONT
2017-05-18 14:29:41 +00:00
vtkm::Id GetActiveCoordinateSystemIndex() const { return this->CoordinateSystemIndex; }
2016-01-19 14:59:31 +00:00
//@{
/// Choose the field to operate on. Note, if
/// `this->UseCoordinateSystemAsField` is true, then the active field is not used.
VTKM_CONT
void SetActiveField(
const std::string& name,
vtkm::cont::Field::Association association = vtkm::cont::Field::Association::ANY)
2017-05-18 14:29:41 +00:00
{
this->ActiveFieldName = name;
this->ActiveFieldAssociation = association;
2017-05-18 14:29:41 +00:00
}
VTKM_CONT const std::string& GetActiveFieldName() const { return this->ActiveFieldName; }
VTKM_CONT vtkm::cont::Field::Association GetActiveFieldAssociation() const
{
return this->ActiveFieldAssociation;
}
//@}
2016-01-19 14:59:31 +00:00
//@{
/// To simply use the active coordinate system as the field to operate on, set
/// UseCoordinateSystemAsField to true.
VTKM_CONT
void SetUseCoordinateSystemAsField(bool val) { this->UseCoordinateSystemAsField = val; }
2017-08-18 20:28:33 +00:00
VTKM_CONT
bool GetUseCoordinateSystemAsField() const { return this->UseCoordinateSystemAsField; }
//@}
2016-01-19 14:59:31 +00:00
//From the field we can extract the association component
// Association::ANY -> unable to map
// Association::WHOLE_MESH -> (I think this is points)
// Association::POINTS -> map using point mapping
// Association::CELL_SET -> how do we map this?
2017-05-18 14:29:41 +00:00
template <typename DerivedPolicy>
VTKM_CONT bool MapFieldOntoOutput(vtkm::cont::DataSet& result,
const vtkm::cont::Field& field,
vtkm::filter::PolicyBase<DerivedPolicy> policy);
2016-01-19 14:59:31 +00:00
template <typename DerivedPolicy>
VTKM_CONT vtkm::cont::DataSet PrepareForExecution(const vtkm::cont::DataSet& input,
vtkm::filter::PolicyBase<DerivedPolicy> policy);
private:
2017-05-18 14:29:41 +00:00
template <typename DerivedPolicy>
VTKM_CONT vtkm::cont::DataSet PrepareForExecution(const vtkm::cont::DataSet& input,
const vtkm::cont::Field& field,
vtkm::filter::PolicyBase<DerivedPolicy> policy);
2016-01-19 14:59:31 +00:00
//How do we specify float/double coordinate types?
2017-05-18 14:29:41 +00:00
template <typename DerivedPolicy>
VTKM_CONT vtkm::cont::DataSet PrepareForExecution(const vtkm::cont::DataSet& input,
const vtkm::cont::CoordinateSystem& field,
vtkm::filter::PolicyBase<DerivedPolicy> policy);
2016-01-19 14:59:31 +00:00
std::string OutputFieldName;
vtkm::Id CoordinateSystemIndex;
std::string ActiveFieldName;
vtkm::cont::Field::Association ActiveFieldAssociation;
bool UseCoordinateSystemAsField;
friend class vtkm::filter::Filter<Derived>;
2016-01-19 14:59:31 +00:00
};
}
} // namespace vtkm::filter
#include <vtkm/filter/FilterDataSetWithField.hxx>
2016-01-19 14:59:31 +00:00
#endif // vtk_m_filter_DataSetWithFieldFilter_h