VTK  9.3.1
vtkThreadedCompositeDataPipeline.h
Go to the documentation of this file.
1 // SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2 // SPDX-License-Identifier: BSD-3-Clause
19 #ifndef vtkThreadedCompositeDataPipeline_h
20 #define vtkThreadedCompositeDataPipeline_h
21 
22 #include "vtkCommonExecutionModelModule.h" // For export macro
24 
25 VTK_ABI_NAMESPACE_BEGIN
27 class vtkInformation;
28 
29 class VTKCOMMONEXECUTIONMODEL_EXPORT vtkThreadedCompositeDataPipeline
31 {
32 public:
35  void PrintSelf(ostream& os, vtkIndent indent) override;
36 
41  int CallAlgorithm(vtkInformation* request, int direction, vtkInformationVector** inInfo,
42  vtkInformationVector* outInfo) override;
43 
44 protected:
48  vtkInformationVector* outInfoVec, int compositePort, int connection, vtkInformation* request,
49  std::vector<vtkSmartPointer<vtkCompositeDataSet>>& compositeOutput) override;
50 
51 private:
53  void operator=(const vtkThreadedCompositeDataPipeline&) = delete;
54  friend class ProcessBlock;
55 };
56 
57 VTK_ABI_NAMESPACE_END
58 #endif
Executive that works in parallel.
Store vtkAlgorithm input/output information.
static vtkCompositeDataPipeline * New()
superclass for composite data iterators
a simple class to control print indentation
Definition: vtkIndent.h:28
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
virtual int CallAlgorithm(vtkInformation *request, int direction, vtkInformationVector **inInfo, vtkInformationVector *outInfo)
An API to CallAlgorithm that allows you to pass in the info objects to be used.
Executive supporting composite datasets.
Store zero or more vtkInformation instances.
virtual void ExecuteEach(vtkCompositeDataIterator *iter, vtkInformationVector **inInfoVec, vtkInformationVector *outInfoVec, int compositePort, int connection, vtkInformation *request, std::vector< vtkSmartPointer< vtkCompositeDataSet >> &compositeOutput)