VTK  9.1.0
vtkGraphAlgorithm.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkGraphAlgorithm.h
5
6 Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7 All rights reserved.
8 See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9
10 This software is distributed WITHOUT ANY WARRANTY; without even
11 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12 PURPOSE. See the above copyright notice for more information.
13
14=========================================================================*/
15/*-------------------------------------------------------------------------
16 Copyright 2008 Sandia Corporation.
17 Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
18 the U.S. Government retains certain rights in this software.
19-------------------------------------------------------------------------*/
51#ifndef vtkGraphAlgorithm_h
52#define vtkGraphAlgorithm_h
53
54#include "vtkAlgorithm.h"
55#include "vtkCommonExecutionModelModule.h" // For export macro
56#include "vtkGraph.h" // makes things a bit easier
57
58class vtkDataSet;
59
60class VTKCOMMONEXECUTIONMODEL_EXPORT vtkGraphAlgorithm : public vtkAlgorithm
61{
62public:
65 void PrintSelf(ostream& os, vtkIndent indent) override;
66
72
76 vtkGraph* GetOutput() { return this->GetOutput(0); }
78
84 void SetInputData(vtkDataObject* obj) { this->SetInputData(0, obj); }
86
87protected:
90
91 // convenience method
92 virtual int RequestInformation(vtkInformation* request, vtkInformationVector** inputVector,
93 vtkInformationVector* outputVector);
94
95 virtual int RequestDataObject(vtkInformation* request, vtkInformationVector** inputVector,
96 vtkInformationVector* outputVector);
97
102 virtual int RequestData(vtkInformation* request, vtkInformationVector** inputVector,
103 vtkInformationVector* outputVector);
104
110
111 // see algorithm for more info
114
115private:
116 vtkGraphAlgorithm(const vtkGraphAlgorithm&) = delete;
117 void operator=(const vtkGraphAlgorithm&) = delete;
118};
119
120#endif
Superclass for all sources, filters, and sinks in VTK.
Definition: vtkAlgorithm.h:64
general representation of visualization data
Definition: vtkDataObject.h:69
abstract class to specify dataset behavior
Definition: vtkDataSet.h:66
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:299
a simple class to control print indentation
Definition: vtkIndent.h:43
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
@ info
Definition: vtkX3D.h:382
@ port
Definition: vtkX3D.h:453
@ index
Definition: vtkX3D.h:252
int vtkTypeBool
Definition: vtkABI.h:69