vtk-m2/vtkm/cont/Field.h

133 lines
3.3 KiB
C
Raw Normal View History

2015-02-10 17:36:10 +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_Field_h
#define vtk_m_Field_h
#include <vtkm/cont/ArrayHandle.h>
#include <vtkm/cont/DynamicArrayHandle.h>
#include <vtkm/cont/DeviceAdapterAlgorithm.h>
namespace vtkm {
namespace cont {
/// A \c Field encapsulates an array on some piece of the mesh, such as
2015-05-11 20:15:58 +00:00
/// the points, a cell set, a node logical dimension, or the whole mesh.
2015-02-10 17:36:10 +00:00
///
class Field
{
public:
2015-05-11 20:15:58 +00:00
enum Association
{
ASSOC_WHOLE_MESH,
ASSOC_POINTS,
ASSOC_CELL_SET,
ASSOC_LOGICAL_DIM
};
/// default constructor
2015-02-10 17:36:10 +00:00
Field()
{
}
2015-05-11 20:15:58 +00:00
/// constructor for points / whole mesh
template <typename T>
Field(int o, Association a, ArrayHandle<T> &d)
: order(o), association(a), data(d)
{
VTKM_ASSERT_CONT(association == ASSOC_WHOLE_MESH ||
association == ASSOC_POINTS);
SetData(d);
}
/// constructor for cell set associations
template <typename T>
Field(int o, Association a, std::string n, ArrayHandle<T> &d)
: order(o), association(a), assoc_cellset_name(n), data(d)
{
VTKM_ASSERT_CONT(association == ASSOC_CELL_SET);
SetData(d);
}
/// constructor for logical dimension associations
template <typename T>
Field(int o, Association a, int l, ArrayHandle<T> &d)
: order(o), association(a), assoc_logical_dim(l), data(d)
{
VTKM_ASSERT_CONT(association == ASSOC_LOGICAL_DIM);
SetData(d);
}
Association GetAssociation()
{
return association;
}
int GetOrder()
{
return order;
}
std::string GetAssocCellSet()
{
return assoc_cellset_name;
}
int GetAssocLogicalDim()
{
return assoc_logical_dim;
}
2015-04-15 16:33:27 +00:00
vtkm::cont::DynamicArrayHandle &GetData()
2015-02-10 17:36:10 +00:00
{
return data;
}
2015-05-11 20:15:58 +00:00
template <typename T>
void SetData(vtkm::cont::ArrayHandle<T> &newdata)
2015-02-10 17:36:10 +00:00
{
data = newdata;
}
/*
void CopyIntoData(vtkm::cont::ArrayHandle<vtkm::FloatDefault> &tmp)
{
data = vtkm::cont::ArrayHandle<vtkm::FloatDefault, vtkm::cont::StorageTagBasic>();
vtkm::cont::DeviceAdapterAlgorithm<VTKM_DEFAULT_DEVICE_ADAPTER_TAG>::
Copy(tmp, data);
}
*/
private:
2015-05-11 20:15:58 +00:00
int order; ///< 0=(piecewise) constant, 1=linear, 2=quadratic
Association association;
std::string assoc_cellset_name; ///< only populate if assoc is cells
int assoc_logical_dim; ///< only populate if assoc is logical dim
2015-04-15 16:33:27 +00:00
//vtkm::cont::ArrayHandle<vtkm::FloatDefault> data;
vtkm::cont::DynamicArrayHandle data;
2015-02-10 17:36:10 +00:00
};
} // namespace cont
} // namespace vtkm
#endif //vtk_m_CellType_h