VTK  9.2.6
vtkPResampleWithDataSet.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkPResampleWithDataSet.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 =========================================================================*/
28 #ifndef vtkPResampleWithDataSet_h
29 #define vtkPResampleWithDataSet_h
30 
31 #include "vtkFiltersParallelDIY2Module.h" // For export macro
32 #include "vtkResampleWithDataSet.h"
33 
35 
36 class VTKFILTERSPARALLELDIY2_EXPORT vtkPResampleWithDataSet : public vtkResampleWithDataSet
37 {
38 public:
40  void PrintSelf(ostream& os, vtkIndent indent) override;
41 
42  static vtkPResampleWithDataSet* New();
43 
45 
49  virtual void SetController(vtkMultiProcessController*);
50  vtkGetObjectMacro(Controller, vtkMultiProcessController);
52 
54 
67  vtkSetMacro(UseBalancedPartitionForPointsLookup, bool);
68  vtkGetMacro(UseBalancedPartitionForPointsLookup, bool);
69  vtkBooleanMacro(UseBalancedPartitionForPointsLookup, bool);
71 
72 protected:
74  ~vtkPResampleWithDataSet() override;
75 
78 
81 
82 private:
84  void operator=(const vtkPResampleWithDataSet&) = delete;
85 };
86 
87 #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:39
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.