VTK  9.5.20250917
vtkMultiBlockDataSetAlgorithm.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 vtkMultiBlockDataSetAlgorithm_h
16#define vtkMultiBlockDataSetAlgorithm_h
17
18#include "vtkAlgorithm.h"
19#include "vtkCommonExecutionModelModule.h" // For export macro
20#include "vtkWrappingHints.h" // For VTK_MARSHALAUTO
21
22VTK_ABI_NAMESPACE_BEGIN
24
25class VTKCOMMONEXECUTIONMODEL_EXPORT VTK_MARSHALAUTO vtkMultiBlockDataSetAlgorithm
26 : public vtkAlgorithm
27{
28public:
31 void PrintSelf(ostream& os, vtkIndent indent) override;
32
34
40
42
50
55 vtkInformationVector* outputVector) override;
56
57protected:
59 ~vtkMultiBlockDataSetAlgorithm() override = default;
60
66 {
67 return 1;
68 }
69
75 {
76 return 1;
77 }
78
84 {
85 return 1;
86 }
87
89
94 {
95 return 1;
96 }
98
100 {
101 return 1;
102 }
103
104 // Create a default executive.
106
107 // see algorithm for more info
108 int FillOutputPortInformation(int port, vtkInformation* info) override;
109 int FillInputPortInformation(int port, vtkInformation* info) override;
110
112
113private:
115 void operator=(const vtkMultiBlockDataSetAlgorithm&) = delete;
116};
117
118VTK_ABI_NAMESPACE_END
119#endif
Superclass for all sources, filters, and sinks in VTK.
general representation of visualization data
Superclass for all pipeline executives in VTK.
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.
~vtkMultiBlockDataSetAlgorithm() override=default
vtkExecutive * CreateDefaultExecutive() override
Create a default executive.
virtual int RequestUpdateTime(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
virtual int RequestUpdateExtent(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
This is called by the superclass.
virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
This is called by the superclass.
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.
int FillOutputPortInformation(int port, vtkInformation *info) override
Fill the output port information objects for this algorithm.
vtkTypeBool ProcessRequest(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector) override
see vtkAlgorithm for details
virtual int RequestDataObject(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
This is called by the superclass.
vtkDataObject * GetInput(int port)
vtkMultiBlockDataSet * GetOutput()
Get the output data object for a port on this algorithm.
vtkMultiBlockDataSet * GetOutput(int)
Get the output data object for a port on this algorithm.
void SetInputData(vtkDataObject *)
Assign a data object as input.
void SetInputData(int, vtkDataObject *)
Assign a data object as input.
virtual int RequestInformation(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
This is called by the superclass.
static vtkMultiBlockDataSetAlgorithm * New()
Composite dataset that organizes datasets into blocks.
int vtkTypeBool
Definition vtkABI.h:64
#define VTK_MARSHALAUTO