VTK  9.1.0
vtkSelectionAlgorithm.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkSelectionAlgorithm.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=========================================================================*/
37#ifndef vtkSelectionAlgorithm_h
38#define vtkSelectionAlgorithm_h
39
40#include "vtkAlgorithm.h"
41#include "vtkCommonExecutionModelModule.h" // For export macro
42#include "vtkSelection.h" // makes things a bit easier
43
44class vtkDataSet;
45
46class VTKCOMMONEXECUTIONMODEL_EXPORT vtkSelectionAlgorithm : public vtkAlgorithm
47{
48public:
51 void PrintSelf(ostream& os, vtkIndent indent) override;
52
58
62 vtkSelection* GetOutput() { return this->GetOutput(0); }
64
70 void SetInputData(vtkDataObject* obj) { this->SetInputData(0, obj); }
72
73protected:
76
77 // convenience method
78 virtual int RequestInformation(vtkInformation* request, vtkInformationVector** inputVector,
79 vtkInformationVector* outputVector);
80
85 virtual int RequestData(vtkInformation* request, vtkInformationVector** inputVector,
86 vtkInformationVector* outputVector);
87
93
94 // see algorithm for more info
97
98private:
100 void operator=(const vtkSelectionAlgorithm&) = delete;
101};
102
103#endif
Superclass for all sources, filters, and sinks in VTK.
Definition: vtkAlgorithm.h:114
general representation of visualization data
abstract class to specify dataset behavior
Definition: vtkDataSet.h:166
a simple class to control print indentation
Definition: vtkIndent.h:113
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Superclass for algorithms that produce only Selection as output.
vtkSelection * GetOutput()
Get the output data object for a port on this algorithm.
vtkSelection * GetOutput(int index)
virtual int RequestUpdateExtent(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
This is called by the superclass.
void SetInputData(vtkDataObject *obj)
Assign a data object as input.
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.
~vtkSelectionAlgorithm() override
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
This is called by the superclass.
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.
static vtkSelectionAlgorithm * New()
vtkTypeBool ProcessRequest(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
see vtkAlgorithm for details
void SetInputData(int index, vtkDataObject *obj)
virtual int RequestInformation(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
data object that represents a "selection" in VTK.
Definition: vtkSelection.h:163
@ info
Definition: vtkX3D.h:382
@ port
Definition: vtkX3D.h:453
@ index
Definition: vtkX3D.h:252
int vtkTypeBool
Definition: vtkABI.h:69