VTK  9.3.1
vtkPResampleWithDataSet.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
16 #ifndef vtkPResampleWithDataSet_h
17 #define vtkPResampleWithDataSet_h
18 
19 #include "vtkFiltersParallelDIY2Module.h" // For export macro
20 #include "vtkResampleWithDataSet.h"
21 
22 VTK_ABI_NAMESPACE_BEGIN
24 
25 class VTKFILTERSPARALLELDIY2_EXPORT vtkPResampleWithDataSet : public vtkResampleWithDataSet
26 {
27 public:
29  void PrintSelf(ostream& os, vtkIndent indent) override;
30 
31  static vtkPResampleWithDataSet* New();
32 
34 
38  virtual void SetController(vtkMultiProcessController*);
39  vtkGetObjectMacro(Controller, vtkMultiProcessController);
41 
43 
56  vtkSetMacro(UseBalancedPartitionForPointsLookup, bool);
57  vtkGetMacro(UseBalancedPartitionForPointsLookup, bool);
58  vtkBooleanMacro(UseBalancedPartitionForPointsLookup, bool);
60 
61 protected:
63  ~vtkPResampleWithDataSet() override;
64 
67 
70 
71 private:
73  void operator=(const vtkPResampleWithDataSet&) = delete;
74 };
75 
76 VTK_ABI_NAMESPACE_END
77 #endif // vtkPResampleWithDataSet_h
sample point and cell data of a dataset on points from another dataset.
points from another dataset.
Store vtkAlgorithm input/output information.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkMultiProcessController * Controller
a simple class to control print indentation
Definition: vtkIndent.h:28
static vtkResampleWithDataSet * New()
int RequestUpdateExtent(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called within ProcessRequest when each filter in the pipeline decides what portion of its inp...
Store zero or more vtkInformation instances.
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called within ProcessRequest when a request asks the algorithm to do its work.
Multiprocessing communication superclass.