VTK  9.5.20251011
vtkPassInputTypeAlgorithm.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
25#ifndef vtkPassInputTypeAlgorithm_h
26#define vtkPassInputTypeAlgorithm_h
27
28#include "vtkAlgorithm.h"
29#include "vtkCommonExecutionModelModule.h" // For export macro
30#include "vtkWrappingHints.h" // For VTK_MARSHALAUTO
31
32VTK_ABI_NAMESPACE_BEGIN
33class vtkDataObject;
34class vtkGraph;
36class vtkImageData;
37class vtkMolecule;
38class vtkPolyData;
42class vtkTable;
44
45class VTKCOMMONEXECUTIONMODEL_EXPORT VTK_MARSHALAUTO vtkPassInputTypeAlgorithm : public vtkAlgorithm
46{
47public:
50 void PrintSelf(ostream& os, vtkIndent indent) override;
51
53
59
61
75
81
83
91
93
101
106 vtkInformationVector* outputVector) override;
107
108protected:
110 ~vtkPassInputTypeAlgorithm() override = default;
111
121 virtual int RequestDataObject(vtkInformation* request, vtkInformationVector** inputVector,
122 vtkInformationVector* outputVector);
123
132 {
133 return 1;
134 }
135
143 {
144 return 1;
145 }
146
155 {
156 return 1;
157 }
158
167 {
168 return 1;
169 }
170
178 {
179 return 1;
180 }
181
182 // see algorithm for more info
183 int FillOutputPortInformation(int port, vtkInformation* info) override;
184 int FillInputPortInformation(int port, vtkInformation* info) override;
185
187
188private:
190 void operator=(const vtkPassInputTypeAlgorithm&) = delete;
191};
192
193VTK_ABI_NAMESPACE_END
194#endif
Superclass for all sources, filters, and sinks in VTK.
general representation of visualization data
Base class for graph data types.
Definition vtkGraph.h:342
A dataset containing a grid of vtkHyperTree instances arranged as a rectilinear grid.
topologically and geometrically regular array of data
a simple class to control print indentation
Definition vtkIndent.h:108
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
class describing a molecule
Definition vtkMolecule.h:84
Superclass for algorithms that produce output of the same type as input.
vtkDataObject * GetInput()
Get the input data object.
virtual int RequestUpdateTime(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
This is called within ProcessRequest when a request ask for temporal information to be updated.
vtkDataObject * GetOutput()
Get the output data object for a port on this algorithm.
vtkHyperTreeGrid * GetHyperTreeGridOutput()
Get the output as a concrete type.
static vtkPassInputTypeAlgorithm * New()
int FillOutputPortInformation(int port, vtkInformation *info) override
Fill the output port information objects for this algorithm.
virtual int RequestDataObject(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
This is called within ProcessRequest when a request asks the algorithm to create empty output data ob...
void AddInputData(int, vtkDataObject *)
Assign a data object as input.
vtkUnstructuredGrid * GetUnstructuredGridOutput()
Get the output as a concrete type.
void AddInputData(vtkDataObject *)
Assign a data object as input.
vtkStructuredPoints * GetStructuredPointsOutput()
Get the output as a concrete type.
virtual int RequestUpdateExtent(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
This is called within ProcessRequest when each filter in the pipeline decides what portion of its inp...
vtkGraph * GetGraphOutput()
Get the output as a concrete type.
virtual int RequestUpdateTimeDependentInformation(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
This is called within ProcessRequest when a request ask for meta information to be updated.
void SetInputData(int, vtkDataObject *)
Assign a data object as input.
vtkTypeBool ProcessRequest(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector) override
see vtkAlgorithm for details
vtkPolyData * GetPolyDataOutput()
Get the output as a concrete type.
virtual int RequestInformation(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
This is called within ProcessRequest when a request asks for Information.
vtkRectilinearGrid * GetRectilinearGridOutput()
Get the output as a concrete type.
vtkDataObject * GetOutput(int)
Get the output data object for a port on this algorithm.
~vtkPassInputTypeAlgorithm() override=default
vtkTable * GetTableOutput()
Get the output as a concrete type.
virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
This is called within ProcessRequest when a request asks the algorithm to do its work.
void SetInputData(vtkDataObject *)
Assign a data object as 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.
vtkMolecule * GetMoleculeOutput()
Get the output as a concrete type.
vtkStructuredGrid * GetStructuredGridOutput()
Get the output as a concrete type.
vtkDataObject * GetInput(int port)
vtkImageData * GetImageDataOutput()
Get the output as a concrete type.
concrete dataset represents vertices, lines, polygons, and triangle strips
a dataset that is topologically regular with variable spacing in the three coordinate directions
topologically regular array of data
A subclass of ImageData.
A table, which contains similar-typed columns of data.
Definition vtkTable.h:169
dataset represents arbitrary combinations of all possible cell types
int vtkTypeBool
Definition vtkABI.h:64
#define vtkPassInputTypeAlgorithm
#define VTK_MARSHALAUTO