VTK  9.3.0
vtkArrayData.h
Go to the documentation of this file.
1 // SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2 // SPDX-FileCopyrightText: Copyright 2008 Sandia Corporation
3 // SPDX-License-Identifier: LicenseRef-BSD-3-Clause-Sandia-USGov
4 
26 #ifndef vtkArrayData_h
27 #define vtkArrayData_h
28 
29 #include "vtkCommonDataModelModule.h" // For export macro
30 #include "vtkDataObject.h"
31 
32 VTK_ABI_NAMESPACE_BEGIN
33 class vtkArray;
34 
35 class VTKCOMMONDATAMODEL_EXPORT vtkArrayData : public vtkDataObject
36 {
37 public:
38  static vtkArrayData* New();
39  vtkTypeMacro(vtkArrayData, vtkDataObject);
40  void PrintSelf(ostream& os, vtkIndent indent) override;
41 
43  static vtkArrayData* GetData(vtkInformationVector* v, int i = 0);
44 
49 
53  void ClearArrays();
54 
59 
64 
68  vtkArray* GetArrayByName(const char* name);
69 
73  int GetDataObjectType() override { return VTK_ARRAY_DATA; }
74 
75  void ShallowCopy(vtkDataObject* other) override;
76  void DeepCopy(vtkDataObject* other) override;
77 
78 protected:
80  ~vtkArrayData() override;
81 
82 private:
83  vtkArrayData(const vtkArrayData&) = delete;
84  void operator=(const vtkArrayData&) = delete;
85 
86  class implementation;
87  implementation* const Implementation;
88 };
89 
90 VTK_ABI_NAMESPACE_END
91 #endif
Pipeline data object that contains multiple vtkArray objects.
Definition: vtkArrayData.h:36
void DeepCopy(vtkDataObject *other) override
The goal of the method is to copy the complete data from src into this object.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkArray * GetArrayByName(const char *name)
Returns the array having called name from the collection.
void ClearArrays()
Clears the contents of the collection.
void AddArray(vtkArray *)
Adds a vtkArray to the collection.
void ShallowCopy(vtkDataObject *other) override
The goal of the method is to copy the data up to the array pointers only.
static vtkArrayData * New()
~vtkArrayData() override
vtkIdType GetNumberOfArrays()
Returns the number of vtkArray instances in the collection.
static vtkArrayData * GetData(vtkInformation *info)
int GetDataObjectType() override
Return class name of data type (VTK_ARRAY_DATA).
Definition: vtkArrayData.h:73
vtkArray * GetArray(vtkIdType index)
Returns the n-th vtkArray in the collection.
static vtkArrayData * GetData(vtkInformationVector *v, int i=0)
Abstract interface for N-dimensional arrays.
Definition: vtkArray.h:52
general representation of visualization data
Definition: vtkDataObject.h:55
a simple class to control print indentation
Definition: vtkIndent.h:29
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
@ info
Definition: vtkX3D.h:376
@ name
Definition: vtkX3D.h:219
@ index
Definition: vtkX3D.h:246
int vtkIdType
Definition: vtkType.h:315
#define VTK_ARRAY_DATA
Definition: vtkType.h:92