150 #ifndef vtkDataArray_h
151 #define vtkDataArray_h
154 #include "vtkCommonCoreModule.h"
155 #include "vtkVTK_USE_SCALED_SOA_ARRAYS.h"
157 VTK_ABI_NAMESPACE_BEGIN
213 double* weights)
override;
258 virtual
void SetTuple(
vtkIdType tupleIdx, const
float* tuple)
259 VTK_EXPECTS(0 <= tupleIdx && tupleIdx < GetNumberOfTuples());
260 virtual
void SetTuple(
vtkIdType tupleIdx, const
double* tuple)
261 VTK_EXPECTS(0 <= tupleIdx && tupleIdx < GetNumberOfTuples());
271 VTK_EXPECTS(0 <= tupleIdx && tupleIdx < GetNumberOfTuples());
272 void SetTuple2(
vtkIdType tupleIdx,
double val0,
double val1)
273 VTK_EXPECTS(0 <= tupleIdx && tupleIdx < GetNumberOfTuples());
274 void SetTuple3(
vtkIdType tupleIdx,
double val0,
double val1,
double val2)
275 VTK_EXPECTS(0 <= tupleIdx && tupleIdx < GetNumberOfTuples());
276 void SetTuple4(
vtkIdType tupleIdx,
double val0,
double val1,
double val2,
double val3)
277 VTK_EXPECTS(0 <= tupleIdx && tupleIdx < GetNumberOfTuples());
278 void SetTuple6(
vtkIdType tupleIdx,
double val0,
double val1,
double val2,
double val3,
279 double val4,
double val5)
VTK_EXPECTS(0 <= tupleIdx && tupleIdx < GetNumberOfTuples());
280 void SetTuple9(
vtkIdType tupleIdx,
double val0,
double val1,
double val2,
double val3,
281 double val4,
double val5,
double val6,
double val7,
double val8)
282 VTK_EXPECTS(0 <= tupleIdx && tupleIdx < GetNumberOfTuples());
302 void InsertTuple3(
vtkIdType tupleIdx,
double val0,
double val1,
double val2)
304 void InsertTuple4(
vtkIdType tupleIdx,
double val0,
double val1,
double val2,
double val3)
306 void InsertTuple6(
vtkIdType tupleIdx,
double val0,
double val1,
double val2,
double val3,
307 double val4,
double val5)
VTK_EXPECTS(0 <= tupleIdx);
308 void InsertTuple9(
vtkIdType tupleIdx,
double val0,
double val1,
double val2,
double val3,
309 double val4,
double val5,
double val6,
double val7,
double val8)
VTK_EXPECTS(0 <= tupleIdx);
318 virtual
vtkIdType InsertNextTuple(const
float* tuple) = 0;
319 virtual
vtkIdType InsertNextTuple(const
double* tuple) = 0;
328 void InsertNextTuple1(
double value);
329 void InsertNextTuple2(
double val0,
double val1);
330 void InsertNextTuple3(
double val0,
double val1,
double val2);
331 void InsertNextTuple4(
double val0,
double val1,
double val2,
double val3);
332 void InsertNextTuple6(
333 double val0,
double val1,
double val2,
double val3,
double val4,
double val5);
334 void InsertNextTuple9(
double val0,
double val1,
double val2,
double val3,
double val4,
335 double val5,
double val6,
double val7,
double val8);
345 VTK_EXPECTS(0 <= tupleIdx && tupleIdx < GetNumberOfTuples()) = 0;
346 virtual
void RemoveFirstTuple() { this->RemoveTuple(0); }
365 VTK_EXPECTS(0 <= tupleIdx && tupleIdx < GetNumberOfTuples())
366 VTK_EXPECTS(0 <= compIdx && compIdx < GetNumberOfComponents());
412 virtual
void FillComponent(
int compIdx,
double value)
413 VTK_EXPECTS(0 <= compIdx && compIdx < GetNumberOfComponents());
428 virtual
void CopyComponent(
int dstComponent,
vtkDataArray* src,
int srcComponent);
445 unsigned long GetActualMemorySize() const override;
451 void CreateDefaultLookupTable();
479 void GetRange(
double range[2],
int comp) { this->ComputeRange(
range, comp); }
480 void GetRange(
double range[2],
int comp,
const unsigned char* ghosts,
unsigned char ghostsToSkip)
482 this->ComputeRange(
range, comp, ghosts, ghostsToSkip);
497 this->GetRange(this->
Range, comp);
542 double range[2],
int comp,
const unsigned char* ghosts,
unsigned char ghostsToSkip)
544 this->ComputeFiniteRange(
range, comp, ghosts, ghostsToSkip);
559 this->GetFiniteRange(this->FiniteRange, comp);
560 return this->FiniteRange;
688 double range[2],
int comp,
const unsigned char* ghosts,
unsigned char ghostsToSkip = 0xff);
710 double range[2],
int comp,
const unsigned char* ghosts,
unsigned char ghostsToSkip = 0xff);
731 double* ranges,
const unsigned char* ghosts,
unsigned char ghostsToSkip = 0xff);
749 double range[2],
const unsigned char* ghosts,
unsigned char ghostsToSkip = 0xff);
769 double* ranges,
const unsigned char* ghosts,
unsigned char ghostsToSkip = 0xff);
787 double range[2],
const unsigned char* ghosts,
unsigned char ghostsToSkip = 0xff);
796 double FiniteRange[2];
811 switch (
source->GetArrayType())
828 VTK_ABI_NAMESPACE_END
834 VTK_ABI_NAMESPACE_BEGIN
841 VTK_ABI_NAMESPACE_END
Abstract superclass for all arrays.
vtkIdType GetNumberOfTuples() const
Get the number of complete tuples (a component group) in the array.
virtual int GetDataTypeSize() const =0
Return the size of the underlying data type.
abstract superclass for arrays of numeric data
virtual void ComputeRange(double range[2], int comp, const unsigned char *ghosts, unsigned char ghostsToSkip=0xff)
Compute the range for a specific component.
static double GetDataTypeMin(int type)
These methods return the Min and Max possible range of the native data type.
void InterpolateTuple(vtkIdType dstTupleIdx, vtkIdList *ptIndices, vtkAbstractArray *source, double *weights) override
Set the tuple at dstTupleIdx in this array to the interpolated tuple value, given the ptIndices in th...
static vtkInformationDoubleVectorKey * L2_NORM_RANGE()
This key is used to hold tight bounds on the $L_2$ norm of tuples in the array.
virtual bool ComputeScalarRange(double *ranges, const unsigned char *ghosts, unsigned char ghostsToSkip=0xff)
Computes the range for each component of an array, the length of ranges must be two times the number ...
virtual bool ComputeVectorRange(double range[2])
Returns true if the range was computed.
int IsNumeric() const override
This method is here to make backward compatibility easier.
void SetTuple(vtkIdType dstTupleIdx, vtkIdType srcTupleIdx, vtkAbstractArray *source) override
See documentation from parent class.
void GetDataTypeRange(double range[2])
These methods return the Min and Max possible range of the native data type.
void InterpolateTuple(vtkIdType dstTupleIdx, vtkIdType srcTupleIdx1, vtkAbstractArray *source1, vtkIdType srcTupleIdx2, vtkAbstractArray *source2, double t) override
Insert the tuple at dstTupleIdx in this array to the tuple interpolated from the two tuple indices,...
virtual void ComputeRange(double range[2], int comp)
Compute the range for a specific component.
virtual bool ComputeScalarRange(double *ranges)
Computes the range for each component of an array, the length of ranges must be two times the number ...
double * GetFiniteRange(int comp)
Return the range of the data array values for the given component.
void InsertTuples(vtkIdList *dstIds, vtkIdList *srcIds, vtkAbstractArray *source) override
See documentation from parent class.
virtual bool ComputeFiniteVectorRange(double range[2], const unsigned char *ghosts, unsigned char ghostsToSkip=0xff)
Returns true if the range was computed.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
virtual bool ComputeVectorRange(double range[2], const unsigned char *ghosts, unsigned char ghostsToSkip=0xff)
Returns true if the range was computed.
int GetArrayType() const override
Method for type-checking in FastDownCast implementations.
int GetElementComponentSize() const override
Return the size, in bytes, of the lowest-level element of an array.
virtual bool ComputeFiniteVectorRange(double range[2])
Returns true if the range was computed.
virtual void RemoveLastTuple()
These methods remove tuples from the data array.
void GetFiniteRange(double range[2], int comp)
The range of the data array values for the given component will be returned in the provided range arr...
double * GetRange(int comp)
Return the range of the data array values for the given component.
static vtkInformationStringKey * UNITS_LABEL()
A human-readable string indicating the units for the array data.
void GetTuples(vtkIdType p1, vtkIdType p2, vtkAbstractArray *output) override
Get the tuples for the range of tuple ids specified (i.e., p1->p2 inclusive).
double GetDataTypeMin()
These methods return the Min and Max possible range of the native data type.
void InsertTuplesStartingAt(vtkIdType dstStart, vtkIdList *srcIds, vtkAbstractArray *source) override
See documentation from parent class.
void GetTuples(vtkIdList *tupleIds, vtkAbstractArray *output) override
Given a list of tuple ids, return an array of tuples.
virtual void GetTuple(vtkIdType tupleIdx, double *tuple)=0
Get the data tuple at tupleIdx by filling in a user-provided array, Make sure that your array is larg...
double GetTuple1(vtkIdType tupleIdx)
These methods are included as convenience for the wrappers.
double GetDataTypeMax()
These methods return the Min and Max possible range of the native data type.
static vtkInformationDoubleVectorKey * COMPONENT_RANGE()
This key is used to hold tight bounds on the range of one component over all tuples of the array.
int CopyInformation(vtkInformation *infoFrom, int deep=1) override
Copy information instance.
void GetRange(double range[2])
The range of the data array values will be returned in the provided range array argument.
virtual double * GetTuple(vtkIdType tupleIdx)=0
Get the data tuple at tupleIdx.
static vtkDataArray * FastDownCast(vtkAbstractArray *source)
Perform a fast, safe cast from a vtkAbstractArray to a vtkDataArray.
double * GetRange()
Return the range of the data array.
double * GetFiniteRange()
Return the range of the data array.
static vtkInformationDoubleVectorKey * L2_NORM_FINITE_RANGE()
This key is used to hold tight bounds on the $L_2$ norm of tuples in the array.
virtual double GetComponent(vtkIdType tupleIdx, int compIdx)
Return the data component at the location specified by tupleIdx and compIdx.
vtkIdType InsertNextTuple(vtkIdType srcTupleIdx, vtkAbstractArray *source) override
See documentation from parent class.
virtual void ComputeFiniteRange(double range[2], int comp)
Compute the range for a specific component.
virtual double GetMaxNorm()
Return the maximum norm for the tuples.
double * GetTuple2(vtkIdType tupleIdx)
These methods are included as convenience for the wrappers.
void InsertTuple(vtkIdType dstTupleIdx, vtkIdType srcTupleIdx, vtkAbstractArray *source) override
See documentation from parent class.
void GetRange(double range[2], int comp, const unsigned char *ghosts, unsigned char ghostsToSkip)
The range of the data array values for the given component will be returned in the provided range arr...
static void GetDataTypeRange(int type, double range[2])
These methods return the Min and Max possible range of the native data type.
virtual bool ComputeFiniteScalarRange(double *ranges, const unsigned char *ghosts, unsigned char ghostsToSkip=0xff)
Computes the range for each component of an array, the length of ranges must be two times the number ...
virtual void ComputeFiniteRange(double range[2], int comp, const unsigned char *ghosts, unsigned char ghostsToSkip=0xff)
Compute the range for a specific component.
void GetFiniteRange(double range[2], int comp, const unsigned char *ghosts, unsigned char ghostsToSkip)
The range of the data array values for the given component will be returned in the provided range arr...
void GetFiniteRange(double range[2])
The range of the data array values will be returned in the provided range array argument.
static vtkDataArray * CreateDataArray(int dataType)
Creates an array for dataType where dataType is one of VTK_BIT, VTK_CHAR, VTK_SIGNED_CHAR,...
void InsertTuples(vtkIdType dstStart, vtkIdType n, vtkIdType srcStart, vtkAbstractArray *source) override
See documentation from parent class.
virtual bool ComputeFiniteScalarRange(double *ranges)
Computes the range for each component of an array, the length of ranges must be two times the number ...
void Modified() override
Removes out-of-date L2_NORM_RANGE() and L2_NORM_FINITE_RANGE() values.
static double GetDataTypeMax(int type)
These methods return the Min and Max possible range of the native data type.
vtkLookupTable * LookupTable
dynamic, self-adjusting array of double
represent and manipulate fields of data
list of point or cell ids
a simple class to control print indentation
map scalar values into colors via a lookup table
represent and manipulate 3D points
vtkSmartPointer< vtkDataArray > GetData(const Ioss::GroupingEntity *entity, const std::string &fieldname, Ioss::Transform *transform=nullptr, Cache *cache=nullptr, const std::string &cachekey=std::string())
Returns a VTK array for a given field (fieldname) on the chosen block (or set) entity.
auto Range(IterablePtr iterable, Options &&... opts) -> typename detail::IterableTraits< typename detail::StripPointers< IterablePtr >::type >::RangeType
Generate an iterable STL proxy object for a VTK container.
boost::graph_traits< vtkGraph * >::vertex_descriptor source(boost::graph_traits< vtkGraph * >::edge_descriptor e, vtkGraph *)
vtkArrayDownCast_FastCastMacro(vtkDataArray)
#define VTK_SIZEHINT(...)