vtk-m/vtkm/filter/FilterDataSetWithField.h

133 lines
4.5 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.
// 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.
//
// Copyright 2014 Sandia Corporation.
// Copyright 2014 UT-Battelle, LLC.
// Copyright 2014 Los Alamos National Security.
//
// Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
// the U.S. Government retains certain rights in this software.
//
// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National
// Laboratory (LANL), the U.S. Government retains certain rights in
// this software.
//============================================================================
#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/RuntimeDeviceTracker.h>
2016-01-19 14:59:31 +00:00
#include <vtkm/filter/PolicyBase.h>
#include <vtkm/filter/ResultDataSet.h>
2016-01-19 14:59:31 +00:00
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
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 SetActiveCellSet(vtkm::Id index) { this->CellSetIndex = index; }
2016-01-19 14:59:31 +00:00
VTKM_CONT
2017-05-18 14:29:41 +00:00
vtkm::Id GetActiveCellSetIndex() const { return this->CellSetIndex; }
2016-01-19 14:59:31 +00:00
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
VTKM_CONT
2017-05-18 14:29:41 +00:00
void SetRuntimeDeviceTracker(const vtkm::cont::RuntimeDeviceTracker& tracker)
{
this->Tracker = tracker;
}
VTKM_CONT
2017-05-18 14:29:41 +00:00
const vtkm::cont::RuntimeDeviceTracker& GetRuntimeDeviceTracker() const { return this->Tracker; }
VTKM_CONT
2017-05-18 14:29:41 +00:00
ResultDataSet Execute(const vtkm::cont::DataSet& input, const std::string& inFieldName);
2016-01-19 14:59:31 +00:00
VTKM_CONT
2017-05-18 14:29:41 +00:00
ResultDataSet Execute(const vtkm::cont::DataSet& input, const vtkm::cont::Field& field);
2016-01-19 14:59:31 +00:00
VTKM_CONT
2017-05-18 14:29:41 +00:00
ResultDataSet Execute(const vtkm::cont::DataSet& input,
const vtkm::cont::CoordinateSystem& field);
2016-01-19 14:59:31 +00:00
2017-05-18 14:29:41 +00:00
template <typename DerivedPolicy>
VTKM_CONT ResultDataSet Execute(const vtkm::cont::DataSet& input,
const std::string& inFieldName,
2017-05-18 14:29:41 +00:00
const vtkm::filter::PolicyBase<DerivedPolicy>& policy);
2016-01-19 14:59:31 +00:00
2017-05-18 14:29:41 +00:00
template <typename DerivedPolicy>
VTKM_CONT ResultDataSet Execute(const vtkm::cont::DataSet& input,
const vtkm::cont::Field& field,
2017-05-18 14:29:41 +00:00
const vtkm::filter::PolicyBase<DerivedPolicy>& policy);
2016-01-19 14:59:31 +00:00
2017-05-18 14:29:41 +00:00
template <typename DerivedPolicy>
VTKM_CONT ResultDataSet Execute(const vtkm::cont::DataSet& input,
const vtkm::cont::CoordinateSystem& field,
const vtkm::filter::PolicyBase<DerivedPolicy>& policy);
2016-01-19 14:59:31 +00:00
//From the field we can extract the association component
// ASSOC_ANY -> unable to map
// ASSOC_WHOLE_MESH -> (I think this is points)
// ASSOC_POINTS -> map using point mapping
// ASSOC_CELL_SET -> how do we map this?
// ASSOC_LOGICAL_DIM -> unable to map?
VTKM_CONT
2017-05-18 14:29:41 +00:00
bool MapFieldOntoOutput(ResultDataSet& result, const vtkm::cont::Field& field);
2016-01-19 14:59:31 +00:00
2017-05-18 14:29:41 +00:00
template <typename DerivedPolicy>
VTKM_CONT bool MapFieldOntoOutput(ResultDataSet& result,
const vtkm::cont::Field& field,
2017-05-18 14:29:41 +00:00
const vtkm::filter::PolicyBase<DerivedPolicy>& policy);
2016-01-19 14:59:31 +00:00
private:
2017-05-18 14:29:41 +00:00
template <typename DerivedPolicy>
VTKM_CONT ResultDataSet
PrepareForExecution(const vtkm::cont::DataSet& input,
const vtkm::cont::Field& field,
2017-05-18 14:29:41 +00:00
const 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 ResultDataSet
PrepareForExecution(const vtkm::cont::DataSet& input,
const vtkm::cont::CoordinateSystem& field,
2017-05-18 14:29:41 +00:00
const vtkm::filter::PolicyBase<DerivedPolicy>& policy);
2016-01-19 14:59:31 +00:00
std::string OutputFieldName;
vtkm::Id CellSetIndex;
vtkm::Id CoordinateSystemIndex;
vtkm::cont::RuntimeDeviceTracker Tracker;
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