VTK  9.5.20250913
vtkDataObjectAlgorithm.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
21#ifndef vtkDataObjectAlgorithm_h
22#define vtkDataObjectAlgorithm_h
23
24#include "vtkAlgorithm.h"
25#include "vtkCommonExecutionModelModule.h" // For export macro
26#include "vtkDataObject.h" // makes things a bit easier
27#include "vtkWrappingHints.h" // For VTK_MARSHALAUTO
28
29VTK_ABI_NAMESPACE_BEGIN
30class vtkDataSet;
31class vtkDataObject;
32
33class VTKCOMMONEXECUTIONMODEL_EXPORT VTK_MARSHALAUTO vtkDataObjectAlgorithm : public vtkAlgorithm
34{
35public:
38 void PrintSelf(ostream& os, vtkIndent indent) override;
39
41
46 virtual void SetOutput(vtkDataObject* d);
48
54
55 // this method is not recommended for use, but lots of old style filters
56 // use it
59
61
69
71
79
80protected:
83
84 // convenience method
85 virtual int RequestInformation(vtkInformation* request, vtkInformationVector** inputVector,
86 vtkInformationVector* outputVector);
87
93 {
94 return 1;
95 }
96
102 {
103 return 1;
104 }
105
107 {
108 return 1;
109 }
110
112 {
113 return 1;
114 }
115
116 // see algorithm for more info
117 int FillOutputPortInformation(int port, vtkInformation* info) override;
118 int FillInputPortInformation(int port, vtkInformation* info) override;
119
129 int dataType, vtkInformation* outputInformation, bool exact = false);
130
131private:
133 void operator=(const vtkDataObjectAlgorithm&) = delete;
134};
135
136VTK_ABI_NAMESPACE_END
137#endif
Superclass for all sources, filters, and sinks in VTK.
Superclass for algorithms that produce only data object as output.
vtkDataObject * GetInput()
static bool SetOutputDataObject(int dataType, vtkInformation *outputInformation, bool exact=false)
A helper method that can be used by subclasses in RequestDataObject to create an output data object o...
static vtkDataObjectAlgorithm * New()
vtkDataObject * GetOutput()
Get the output data object for a port on this algorithm.
virtual void SetOutput(vtkDataObject *d)
Get the output data object for a port on this algorithm.
vtkTypeBool ProcessRequest(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
see vtkAlgorithm for details
void SetInputData(int, vtkDataObject *)
Assign a data object as input.
void AddInputData(vtkDataObject *)
Assign a data object as input.
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.
virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
void SetInputData(vtkDataObject *)
Assign a data object as input.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
int FillOutputPortInformation(int port, vtkInformation *info) override
Fill the output port information objects for this algorithm.
void AddInputData(int, vtkDataObject *)
Assign a data object as input.
~vtkDataObjectAlgorithm() override
vtkDataObject * GetInput(int port)
virtual int RequestUpdateExtent(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
This is called by the superclass.
virtual int RequestDataObject(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
This is called by the superclass.
virtual int RequestInformation(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
virtual int RequestUpdateTime(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
vtkDataObject * GetOutput(int)
Get the output data object for a port on this algorithm.
general representation of visualization data
abstract class to specify dataset behavior
Definition vtkDataSet.h:165
a simple class to control print indentation
Definition vtkIndent.h:108
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
int vtkTypeBool
Definition vtkABI.h:64
#define VTK_MARSHALAUTO