VTK  9.6.20260626
vtkPartitionedDataSetAlgorithm.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
10
11#ifndef vtkPartitionedDataSetAlgorithm_h
12#define vtkPartitionedDataSetAlgorithm_h
13
14#include "vtkAlgorithm.h"
15#include "vtkCommonExecutionModelModule.h" // For export macro
16#include "vtkWrappingHints.h" // For VTK_MARSHALAUTO
17
18VTK_ABI_NAMESPACE_BEGIN
20
21class VTKCOMMONEXECUTIONMODEL_EXPORT VTK_MARSHALAUTO vtkPartitionedDataSetAlgorithm
22 : public vtkAlgorithm
23{
24public:
26 void PrintSelf(ostream& os, vtkIndent indent) override;
27
29
37
39
45
47 vtkInformation* request, vtkInformationVector** inInfo, vtkInformationVector* outInfo) override;
48
49protected:
52
54
66 {
67 return 1;
68 }
77
78
79 int FillOutputPortInformation(int port, vtkInformation* info) override;
80 int FillInputPortInformation(int port, vtkInformation* info) override;
81
82private:
84 void operator=(const vtkPartitionedDataSetAlgorithm&) = delete;
85};
86
87VTK_ABI_NAMESPACE_END
88#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.
virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
Methods for subclasses to override to handle different pipeline requests.
virtual int RequestInformation(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
Methods for subclasses to override to handle different pipeline requests.
virtual int RequestDataObject(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
Methods for subclasses to override to handle different pipeline requests.
vtkTypeBool ProcessRequest(vtkInformation *request, vtkInformationVector **inInfo, vtkInformationVector *outInfo) override
Upstream/Downstream requests form the generalized interface through which executives invoke a algorit...
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.
vtkPartitionedDataSet * GetOutput()
Get the output data object for the specified output port.
void SetInputData(int, vtkDataObject *)
Assign a data object as input.
virtual int RequestUpdateTime(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
Methods for subclasses to override to handle different pipeline requests.
vtkPartitionedDataSet * GetOutput(int)
Get the output data object for the specified output port.
int FillOutputPortInformation(int port, vtkInformation *info) override
Fill the output port information objects for this algorithm.
virtual int RequestUpdateExtent(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
Methods for subclasses to override to handle different pipeline requests.
~vtkPartitionedDataSetAlgorithm() override
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
composite dataset to encapsulates a dataset consisting of partitions.
int vtkTypeBool
Definition vtkABI.h:64
#define VTK_MARSHALAUTO