VTK  9.3.20240424
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
34#ifndef vtkMultiBlockMergeFilter_h
35#define vtkMultiBlockMergeFilter_h
36
37#include "vtkFiltersGeneralModule.h" // For export macro
39
40VTK_ABI_NAMESPACE_BEGIN
41class VTKFILTERSGENERAL_EXPORT vtkMultiBlockMergeFilter : public vtkMultiBlockDataSetAlgorithm
42{
43public:
45 void PrintSelf(ostream& os, vtkIndent indent) override;
46
52
54
62
63protected:
66
68
69 int FillInputPortInformation(int port, vtkInformation* info) override;
70
72
73 int Merge(unsigned int numPieces, unsigned int pieceNo, vtkMultiBlockDataSet* output,
75
76private:
78 void operator=(const vtkMultiBlockMergeFilter&) = delete;
79};
80
81VTK_ABI_NAMESPACE_END
82#endif
general representation of visualization data
a simple class to control print indentation
Definition vtkIndent.h:108
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