VTK  9.3.0
vtkMultiBlockMergeFilter.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2// SPDX-License-Identifier: BSD-3-Clause
15#ifndef vtkMultiBlockMergeFilter_h
16#define vtkMultiBlockMergeFilter_h
17
18#include "vtkFiltersGeneralModule.h" // For export macro
20
21VTK_ABI_NAMESPACE_BEGIN
22class VTKFILTERSGENERAL_EXPORT vtkMultiBlockMergeFilter : public vtkMultiBlockDataSetAlgorithm
23{
24public:
26 void PrintSelf(ostream& os, vtkIndent indent) override;
27
33
35
43
44protected:
47
49
50 int FillInputPortInformation(int port, vtkInformation* info) override;
51
53
54 int Merge(unsigned int numPieces, unsigned int pieceNo, vtkMultiBlockDataSet* output,
56
57private:
59 void operator=(const vtkMultiBlockMergeFilter&) = delete;
60};
61
62VTK_ABI_NAMESPACE_END
63#endif
general representation of visualization data
a simple class to control print indentation
Definition vtkIndent.h:29
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Superclass for algorithms that produce only vtkMultiBlockDataSet as output.
Composite dataset that organizes datasets into blocks.
merges multiblock inputs into a single multiblock output
void AddInputData(vtkDataObject *)
Assign a data object as input.
void AddInputData(int, vtkDataObject *)
Assign a data object as input.
int IsMultiPiece(vtkMultiBlockDataSet *)
static vtkMultiBlockMergeFilter * New()
Construct object with PointIds and CellIds on; and ids being generated as scalars.
int Merge(unsigned int numPieces, unsigned int pieceNo, vtkMultiBlockDataSet *output, vtkMultiBlockDataSet *input)
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
~vtkMultiBlockMergeFilter() override