VTK  9.2.6
vtkCompositeDataSet.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkCompositeDataSet.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
55 #ifndef vtkCompositeDataSet_h
56 #define vtkCompositeDataSet_h
57 
58 #include "vtkCommonDataModelModule.h" // For export macro
59 #include "vtkDataObject.h"
60 
61 #include <vector> // For GetDataSets
62 
64 class vtkCompositeDataSetInternals;
65 class vtkDataSet;
66 class vtkInformation;
69 
70 class VTKCOMMONDATAMODEL_EXPORT vtkCompositeDataSet : public vtkDataObject
71 {
72 public:
74  void PrintSelf(ostream& os, vtkIndent indent) override;
75 
80 
85  int GetDataObjectType() override { return VTK_COMPOSITE_DATA_SET; }
86 
92  virtual void CopyStructure(vtkCompositeDataSet* input);
93 
100  virtual void SetDataSet(vtkCompositeDataIterator* iter, vtkDataObject* dataObj) = 0;
101 
109 
118  virtual vtkDataObject* GetDataSet(unsigned int flatIndex);
119 
124  unsigned long GetActualMemorySize() override;
125 
127 
133 
137  void Initialize() override;
138 
140 
143  void ShallowCopy(vtkDataObject* src) override;
144  void DeepCopy(vtkDataObject* src) override;
146 
153  virtual void RecursiveShallowCopy(vtkDataObject* src) = 0;
154 
161 
168 
173 
183  void GetBounds(double bounds[6]);
184 
189 
198 
209  template <class DataSetT = vtkDataSet>
210  static std::vector<DataSetT*> GetDataSets(vtkDataObject* dobj, bool preserveNull = false);
211 
212 protected:
215 
216 private:
217  vtkCompositeDataSet(const vtkCompositeDataSet&) = delete;
218  void operator=(const vtkCompositeDataSet&) = delete;
219 };
220 
221 #include "vtkCompositeDataSet.txx" // for template implementations
222 
223 #endif
superclass for composite data iterators
abstract superclass for composite (multi-block or AMR) datasets
~vtkCompositeDataSet() override
static std::vector< DataSetT * > GetDataSets(vtkDataObject *dobj, bool preserveNull=false)
Extract datasets from the given data object.
virtual vtkIdType GetNumberOfCells()
Returns the total number of cells of all blocks.
virtual void SetDataSet(vtkCompositeDataIterator *iter, vtkDataObject *dataObj)=0
Sets the data set at the location pointed by the iterator.
void GetBounds(double bounds[6])
Return the geometric bounding box in the form (xmin,xmax, ymin,ymax, zmin,zmax).
static vtkInformationStringKey * NAME()
Key used to put node name in the meta-data associated with a node.
virtual vtkDataObject * GetDataSet(unsigned int flatIndex)
Returns the dataset located at the position pointed by the flatIndex.
vtkIdType GetNumberOfElements(int type) override
Get the number of elements for a specific attribute type (POINT, CELL, etc.).
virtual vtkIdType GetNumberOfPoints()
Returns the total number of points of all blocks.
static vtkCompositeDataSet * GetData(vtkInformation *info)
Retrieve an instance of this class from an information object.
static vtkCompositeDataSet * GetData(vtkInformationVector *v, int i=0)
Retrieve an instance of this class from an information object.
virtual vtkCompositeDataIterator * NewIterator()=0
Return a new iterator (the iterator has to be deleted by user).
virtual void CopyStructure(vtkCompositeDataSet *input)
Copies the tree structure from the input.
virtual vtkDataObject * GetDataSet(vtkCompositeDataIterator *iter)=0
Returns the dataset located at the position pointed by the iterator.
void DeepCopy(vtkDataObject *src) override
Shallow and Deep copy.
int GetDataObjectType() override
Return class name of data type (see vtkType.h for definitions).
static vtkInformationIntegerKey * CURRENT_PROCESS_CAN_LOAD_BLOCK()
Key used to indicate that the current process can load the data in the node.
virtual void RecursiveShallowCopy(vtkDataObject *src)=0
For historical reasons, vtkCompositeDataSet::ShallowCopy simply pass pointers to the leaf non-composi...
void Initialize() override
Restore data object to initial state,.
unsigned long GetActualMemorySize() override
Return the actual size of the data in kibibytes (1024 bytes).
void ShallowCopy(vtkDataObject *src) override
Shallow and Deep copy.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
general representation of visualization data
abstract class to specify dataset behavior
Definition: vtkDataSet.h:172
a simple class to control print indentation
Definition: vtkIndent.h:119
Key for integer values in vtkInformation.
Key for string values in vtkInformation.
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
@ info
Definition: vtkX3D.h:382
@ type
Definition: vtkX3D.h:522
int vtkIdType
Definition: vtkType.h:332
#define VTK_COMPOSITE_DATA_SET
Definition: vtkType.h:88
#define VTK_NEWINSTANCE