vtk-m2/vtkm/cont/Field.h

199 lines
5.6 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
};
/// constructors for points / whole mesh
2015-05-11 20:15:58 +00:00
template <typename T>
2015-05-19 20:21:15 +00:00
Field(std::string n, int o, Association a, ArrayHandle<T> &d)
: name(n), order(o), association(a)
2015-05-11 20:15:58 +00:00
{
VTKM_ASSERT_CONT(association == ASSOC_WHOLE_MESH ||
association == ASSOC_POINTS);
SetData(d);
}
template <typename T>
Field(std::string n, int o, Association a, const std::vector<T> &d)
: name(n), order(o), association(a)
{
VTKM_ASSERT_CONT(association == ASSOC_WHOLE_MESH ||
association == ASSOC_POINTS);
CopyData(&d[0], d.size());
}
template <typename T>
Field(std::string n, int o, Association a, const T *d, int nvals)
: name(n), order(o), association(a)
{
VTKM_ASSERT_CONT(association == ASSOC_WHOLE_MESH ||
association == ASSOC_POINTS);
CopyData(d, nvals);
}
template <typename T>
Field(std::string n, int o, Association a)
: name(n), order(o), association(a)
{
VTKM_ASSERT_CONT(association == ASSOC_WHOLE_MESH ||
association == ASSOC_POINTS);
}
2015-05-11 20:15:58 +00:00
/// constructors for cell set associations
2015-05-11 20:15:58 +00:00
template <typename T>
2015-05-19 20:21:15 +00:00
Field(std::string n, int o, Association a, std::string csn, ArrayHandle<T> &d)
: name(n), order(o), association(a), assoc_cellset_name(csn)
2015-05-11 20:15:58 +00:00
{
VTKM_ASSERT_CONT(association == ASSOC_CELL_SET);
SetData(d);
}
template <typename T>
Field(std::string n, int o, Association a, std::string csn, const std::vector<T> &d)
: name(n), order(o), association(a), assoc_cellset_name(csn)
{
VTKM_ASSERT_CONT(association == ASSOC_CELL_SET);
CopyData(&d[0], d.size());
}
template <typename T>
Field(std::string n, int o, Association a, std::string csn, const T *d, int nvals)
: name(n), order(o), association(a), assoc_cellset_name(csn)
{
VTKM_ASSERT_CONT(association == ASSOC_CELL_SET);
CopyData(d, nvals);
}
template <typename T>
Field(std::string n, int o, Association a, std::string csn)
: name(n), order(o), association(a), assoc_cellset_name(csn)
{
VTKM_ASSERT_CONT(association == ASSOC_CELL_SET);
}
2015-05-11 20:15:58 +00:00
/// constructors for logical dimension associations
2015-05-11 20:15:58 +00:00
template <typename T>
2015-05-19 20:21:15 +00:00
Field(std::string n, int o, Association a, int l, ArrayHandle<T> &d)
: name(n), order(o), association(a), assoc_logical_dim(l)
2015-05-11 20:15:58 +00:00
{
VTKM_ASSERT_CONT(association == ASSOC_LOGICAL_DIM);
SetData(d);
}
template <typename T>
Field(std::string n, int o, Association a, int l, const std::vector<T> &d)
: name(n), order(o), association(a), assoc_logical_dim(l)
{
VTKM_ASSERT_CONT(association == ASSOC_LOGICAL_DIM);
CopyData(&d[0], d.size());
}
template <typename T>
Field(std::string n, int o, Association a, int l, const T *d, int nvals)
: name(n), order(o), association(a), assoc_logical_dim(l)
{
VTKM_ASSERT_CONT(association == ASSOC_LOGICAL_DIM);
CopyData(d, nvals);
}
template <typename T>
Field(std::string n, int o, Association a, int l)
: name(n), order(o), association(a), assoc_logical_dim(l)
{
VTKM_ASSERT_CONT(association == ASSOC_LOGICAL_DIM);
}
2015-05-11 20:15:58 +00:00
2015-05-19 20:21:15 +00:00
const std::string &GetName()
{
return name;
}
2015-05-11 20:15:58 +00:00
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;
}
2015-05-19 20:21:15 +00:00
template <typename T>
void CopyData(const T *ptr, int nvals)
2015-02-10 17:36:10 +00:00
{
vtkm::cont::ArrayHandle<T> tmp1 = vtkm::cont::make_ArrayHandle(ptr, nvals);
vtkm::cont::ArrayHandle<T> tmp2;
2015-02-10 17:36:10 +00:00
vtkm::cont::DeviceAdapterAlgorithm<VTKM_DEFAULT_DEVICE_ADAPTER_TAG>::
Copy(tmp1, tmp2);
data = tmp2;
2015-02-10 17:36:10 +00:00
}
private:
std::string name; ///< name of field
2015-05-19 20:21:15 +00:00
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