VTK  9.1.0
vtkGroupDataSetsFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkGroupDataSetsFilter.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 =========================================================================*/
30 #ifndef vtkGroupDataSetsFilter_h
31 #define vtkGroupDataSetsFilter_h
32 
33 #include "vtkDataObjectAlgorithm.h"
34 #include "vtkFiltersGeneralModule.h" // For export macro
35 #include <memory> // for std::unique_ptr
36 
37 class VTKFILTERSGENERAL_EXPORT vtkGroupDataSetsFilter : public vtkDataObjectAlgorithm
38 {
39 public:
42  void PrintSelf(ostream& os, vtkIndent indent) override;
43 
45 
52  vtkSetMacro(OutputType, int);
53  vtkGetMacro(OutputType, int);
58 
60 
67  void SetInputName(int index, const char* name);
68  const char* GetInputName(int index) const;
70 
75 
76 protected:
79 
84 
85 private:
87  void operator=(const vtkGroupDataSetsFilter&) = delete;
88 
89  int OutputType;
90 
91  class vtkInternals;
92  std::unique_ptr<vtkInternals> Internals;
93 };
94 
95 #endif
vtkGroupDataSetsFilter::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkGroupDataSetsFilter::FillInputPortInformation
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.
vtkGroupDataSetsFilter::SetOutputTypeToMultiBlockDataSet
void SetOutputTypeToMultiBlockDataSet()
Get/Set the output type.
vtkInformationVector
Store zero or more vtkInformation instances.
Definition: vtkInformationVector.h:145
vtkDataObjectAlgorithm
Superclass for algorithms that produce only data object as output.
Definition: vtkDataObjectAlgorithm.h:63
vtkGroupDataSetsFilter::GetInputName
const char * GetInputName(int index) const
API to assign names for inputs.
vtkGroupDataSetsFilter::~vtkGroupDataSetsFilter
~vtkGroupDataSetsFilter() override
vtkGroupDataSetsFilter::RequestData
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
vtkGroupDataSetsFilter::vtkGroupDataSetsFilter
vtkGroupDataSetsFilter()
vtkX3D::port
@ port
Definition: vtkX3D.h:453
vtkGroupDataSetsFilter::SetInputName
void SetInputName(int index, const char *name)
API to assign names for inputs.
vtkGroupDataSetsFilter::New
static vtkGroupDataSetsFilter * New()
vtkGroupDataSetsFilter
groups inputs into a chosen composite dataset.
Definition: vtkGroupDataSetsFilter.h:38
vtkGroupDataSetsFilter::SetOutputTypeToPartitionedDataSetCollection
void SetOutputTypeToPartitionedDataSetCollection()
Get/Set the output type.
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:113
vtkGroupDataSetsFilter::RequestDataObject
int RequestDataObject(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
vtkGroupDataSetsFilter::RequestInformation
int RequestInformation(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
vtkX3D::name
@ name
Definition: vtkX3D.h:225
vtkInformation
Store vtkAlgorithm input/output information.
Definition: vtkInformation.h:183
vtkX3D::info
@ info
Definition: vtkX3D.h:382
vtkGroupDataSetsFilter::SetOutputTypeToPartitionedDataSet
void SetOutputTypeToPartitionedDataSet()
Get/Set the output type.
vtkDataObjectAlgorithm.h
vtkGroupDataSetsFilter::ClearInputNames
void ClearInputNames()
Clears all assigned input names.
vtkX3D::index
@ index
Definition: vtkX3D.h:252