VTK
vtkCompositeDataSetAlgorithm.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkCompositeDataSetAlgorithm.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 =========================================================================*/
24 #ifndef vtkCompositeDataSetAlgorithm_h
25 #define vtkCompositeDataSetAlgorithm_h
26 
27 #include "vtkCommonExecutionModelModule.h" // For export macro
28 #include "vtkAlgorithm.h"
29 
31 
32 class VTKCOMMONEXECUTIONMODEL_EXPORT vtkCompositeDataSetAlgorithm : public vtkAlgorithm
33 {
34 public:
37  void PrintSelf(ostream& os, vtkIndent indent) VTK_OVERRIDE;
38 
40 
43  vtkCompositeDataSet* GetOutput();
44  vtkCompositeDataSet* GetOutput(int);
46 
48 
53  void SetInputData(vtkDataObject*);
54  void SetInputData(int, vtkDataObject*);
56 
60  int ProcessRequest(vtkInformation* request,
61  vtkInformationVector** inputVector,
62  vtkInformationVector* outputVector) VTK_OVERRIDE;
63 
64 protected:
67 
74  vtkInformationVector*) {return 1;};
75 
82  vtkInformationVector*) {return 1;};
83 
90  vtkInformationVector*) {return 1;};
91 
93 
100  {
101  return 1;
102  };
104 
105  // Create a default executive.
106  vtkExecutive* CreateDefaultExecutive() VTK_OVERRIDE;
107 
108  // see algorithm for more info
109  int FillOutputPortInformation(int port, vtkInformation* info) VTK_OVERRIDE;
110  int FillInputPortInformation(int port, vtkInformation* info) VTK_OVERRIDE;
111 
112  vtkDataObject *GetInput(int port);
113 
114 private:
116  void operator=(const vtkCompositeDataSetAlgorithm&) VTK_DELETE_FUNCTION;
117 };
118 
119 #endif
120 
121 
virtual int RequestDataObject(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
This is called by the superclass.
virtual int RequestInformation(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
This is called by the superclass.
virtual vtkExecutive * CreateDefaultExecutive()
Create a default executive.
Store vtkAlgorithm input/output information.
virtual int ProcessRequest(vtkInformation *request, vtkInformationVector **inInfo, vtkInformationVector *outInfo)
Upstream/Downstream requests form the generalized interface through which executives invoke a algorit...
Superclass for algorithms that produce only vtkCompositeDataSet as output.
Superclass for all pipeline executives in VTK.
Definition: vtkExecutive.h:49
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
Superclass for all sources, filters, and sinks in VTK.
Definition: vtkAlgorithm.h:59
abstract superclass for composite (multi-block or AMR) datasets
virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
This is called by the superclass.
a simple class to control print indentation
Definition: vtkIndent.h:39
Store zero or more vtkInformation instances.
static vtkAlgorithm * New()
general representation of visualization data
Definition: vtkDataObject.h:64
virtual int RequestUpdateExtent(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
This is called by the superclass.