VTK  9.0.1
vtkTableAlgorithm.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkTableAlgorithm.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 -------------------------------------------------------------------------*/
39 #ifndef vtkTableAlgorithm_h
40 #define vtkTableAlgorithm_h
41 
42 #include "vtkAlgorithm.h"
43 #include "vtkCommonExecutionModelModule.h" // For export macro
44 
45 class vtkDataSet;
46 class vtkTable;
47 
48 class VTKCOMMONEXECUTIONMODEL_EXPORT vtkTableAlgorithm : public vtkAlgorithm
49 {
50 public:
51  static vtkTableAlgorithm* New();
53  void PrintSelf(ostream& os, vtkIndent indent) override;
54 
60 
64  vtkTable* GetOutput() { return this->GetOutput(0); }
65  vtkTable* GetOutput(int index);
66 
72  void SetInputData(vtkDataObject* obj) { this->SetInputData(0, obj); }
73  void SetInputData(int index, vtkDataObject* obj);
74 
75 protected:
77  ~vtkTableAlgorithm() override;
78 
79  // convenience method
80  virtual int RequestInformation(vtkInformation* request, vtkInformationVector** inputVector,
81  vtkInformationVector* outputVector);
82 
87  virtual int RequestData(vtkInformation* request, vtkInformationVector** inputVector,
88  vtkInformationVector* outputVector);
89 
94  virtual int RequestUpdateExtent(vtkInformation*, vtkInformationVector**, vtkInformationVector*);
95 
96  // see algorithm for more info
99 
100 private:
101  vtkTableAlgorithm(const vtkTableAlgorithm&) = delete;
102  void operator=(const vtkTableAlgorithm&) = delete;
103 };
104 
105 #endif
vtkAlgorithm
Superclass for all sources, filters, and sinks in VTK.
Definition: vtkAlgorithm.h:62
vtkAlgorithm::FillInputPortInformation
virtual int FillInputPortInformation(int port, vtkInformation *info)
Fill the input port information objects for this algorithm.
vtkInformationVector
Store zero or more vtkInformation instances.
Definition: vtkInformationVector.h:35
vtkTable
A table, which contains similar-typed columns of data.
Definition: vtkTable.h:62
vtkAlgorithm.h
vtkX3D::port
@ port
Definition: vtkX3D.h:453
vtkTableAlgorithm
Superclass for algorithms that produce only vtkTables as output.
Definition: vtkTableAlgorithm.h:48
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:33
vtkTableAlgorithm::SetInputData
void SetInputData(vtkDataObject *obj)
Assign a data object as input.
Definition: vtkTableAlgorithm.h:72
vtkDataSet
abstract class to specify dataset behavior
Definition: vtkDataSet.h:56
vtkInformation
Store vtkAlgorithm input/output information.
Definition: vtkInformation.h:73
vtkX3D::info
@ info
Definition: vtkX3D.h:382
vtkAlgorithm::New
static vtkAlgorithm * New()
vtkAlgorithm::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkDataObject
general representation of visualization data
Definition: vtkDataObject.h:59
vtkX3D::index
@ index
Definition: vtkX3D.h:252
vtkAlgorithm::ProcessRequest
virtual vtkTypeBool ProcessRequest(vtkInformation *request, vtkInformationVector **inInfo, vtkInformationVector *outInfo)
Upstream/Downstream requests form the generalized interface through which executives invoke a algorit...
vtkAlgorithm::FillOutputPortInformation
virtual int FillOutputPortInformation(int port, vtkInformation *info)
Fill the output port information objects for this algorithm.
vtkTypeBool
int vtkTypeBool
Definition: vtkABI.h:69
vtkTableAlgorithm::GetOutput
vtkTable * GetOutput()
Get the output data object for a port on this algorithm.
Definition: vtkTableAlgorithm.h:64