//============================================================================ // Copyright (c) Kitware, Inc. // All rights reserved. // See LICENSE.txt for details. // // 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_DataSetFilter_h #define vtk_m_filter_DataSetFilter_h #include #include #include #include #include #include namespace vtkm { namespace filter { template class FilterDataSet : public vtkm::filter::Filter { public: VTKM_CONT FilterDataSet(); VTKM_CONT ~FilterDataSet(); VTKM_CONT void SetActiveCoordinateSystem(vtkm::Id index) { this->CoordinateSystemIndex = index; } VTKM_CONT vtkm::Id GetActiveCoordinateSystemIndex() const { return this->CoordinateSystemIndex; } /// These are provided to satisfy the Filter API requirements. //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? template VTKM_CONT bool MapFieldOntoOutput(vtkm::cont::DataSet& result, const vtkm::cont::Field& field, vtkm::filter::PolicyBase policy); template VTKM_CONT vtkm::cont::DataSet PrepareForExecution(const vtkm::cont::DataSet& input, vtkm::filter::PolicyBase policy); protected: vtkm::filter::FilterDataSet& operator=(const vtkm::filter::FilterDataSet&) = default; VTKM_CONT void CopyStateFrom(const FilterDataSet* filter) { *this = *filter; } private: vtkm::Id CoordinateSystemIndex; friend class vtkm::filter::Filter; }; } } // namespace vtkm::filter #include #endif // vtk_m_filter_DataSetFilter_h