VTK  9.3.0
vtkGraphAlgorithm.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2// SPDX-FileCopyrightText: Copyright 2008 Sandia Corporation
3// SPDX-License-Identifier: LicenseRef-BSD-3-Clause-Sandia-USGov
38#ifndef vtkGraphAlgorithm_h
39#define vtkGraphAlgorithm_h
40
41#include "vtkAlgorithm.h"
42#include "vtkCommonExecutionModelModule.h" // For export macro
43#include "vtkGraph.h" // makes things a bit easier
44
45VTK_ABI_NAMESPACE_BEGIN
46class vtkDataSet;
47
48class VTKCOMMONEXECUTIONMODEL_EXPORT vtkGraphAlgorithm : public vtkAlgorithm
49{
50public:
53 void PrintSelf(ostream& os, vtkIndent indent) override;
54
60
64 vtkGraph* GetOutput() { return this->GetOutput(0); }
65 vtkGraph* GetOutput(int index);
66
72 void SetInputData(vtkDataObject* obj) { this->SetInputData(0, obj); }
73 void SetInputData(int index, vtkDataObject* obj);
74
75protected:
78
79 // convenience method
80 virtual int RequestInformation(vtkInformation* request, vtkInformationVector** inputVector,
81 vtkInformationVector* outputVector);
82
83 virtual int RequestDataObject(vtkInformation* request, vtkInformationVector** inputVector,
84 vtkInformationVector* outputVector);
85
90 virtual int RequestData(vtkInformation* request, vtkInformationVector** inputVector,
91 vtkInformationVector* outputVector);
92
98
99 // see algorithm for more info
100 int FillOutputPortInformation(int port, vtkInformation* info) override;
101 int FillInputPortInformation(int port, vtkInformation* info) override;
102
103private:
104 vtkGraphAlgorithm(const vtkGraphAlgorithm&) = delete;
105 void operator=(const vtkGraphAlgorithm&) = delete;
106};
107
108VTK_ABI_NAMESPACE_END
109#endif
Superclass for all sources, filters, and sinks in VTK.
general representation of visualization data
abstract class to specify dataset behavior
Definition vtkDataSet.h:62
Superclass for algorithms that produce only graph as output.
~vtkGraphAlgorithm() override
virtual int RequestUpdateExtent(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
This is called by the superclass.
vtkGraph * GetOutput()
Get the output data object for a port on this algorithm.
int FillOutputPortInformation(int port, vtkInformation *info) override
Fill the output port information objects for this algorithm.
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.
virtual int RequestInformation(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
vtkGraph * GetOutput(int index)
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
This is called by the superclass.
static vtkGraphAlgorithm * New()
void SetInputData(vtkDataObject *obj)
Assign a data object as input.
void SetInputData(int index, vtkDataObject *obj)
virtual int RequestDataObject(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
vtkTypeBool ProcessRequest(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
see vtkAlgorithm for details
Base class for graph data types.
Definition vtkGraph.h:290
a simple class to control print indentation
Definition vtkIndent.h:38
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
int vtkTypeBool
Definition vtkABI.h:64