VTK  9.0.1
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 =========================================================================*/
25 #ifndef vtkPResampleWithDataSet_h
26 #define vtkPResampleWithDataSet_h
27 
28 #include "vtkFiltersParallelDIY2Module.h" // For export macro
29 #include "vtkResampleWithDataSet.h"
30 
32 
33 class VTKFILTERSPARALLELDIY2_EXPORT vtkPResampleWithDataSet : public vtkResampleWithDataSet
34 {
35 public:
37  void PrintSelf(ostream& os, vtkIndent indent) override;
38 
39  static vtkPResampleWithDataSet* New();
40 
42 
46  virtual void SetController(vtkMultiProcessController*);
47  vtkGetObjectMacro(Controller, vtkMultiProcessController);
49 
51 
64  vtkSetMacro(UseBalancedPartitionForPointsLookup, bool);
65  vtkGetMacro(UseBalancedPartitionForPointsLookup, bool);
66  vtkBooleanMacro(UseBalancedPartitionForPointsLookup, bool);
68 
69 protected:
71  ~vtkPResampleWithDataSet() override;
72 
75 
78 
79 private:
81  void operator=(const vtkPResampleWithDataSet&) = delete;
82 };
83 
84 #endif // vtkPResampleWithDataSet_h
vtkResampleWithDataSet::New
static vtkResampleWithDataSet * New()
vtkResampleWithDataSet::RequestUpdateExtent
int RequestUpdateExtent(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called within ProcessRequest when each filter in the pipeline decides what portion of its inp...
vtkInformationVector
Store zero or more vtkInformation instances.
Definition: vtkInformationVector.h:35
vtkPResampleWithDataSet::UseBalancedPartitionForPointsLookup
bool UseBalancedPartitionForPointsLookup
Definition: vtkPResampleWithDataSet.h:77
vtkPResampleWithDataSet::Controller
vtkMultiProcessController * Controller
Definition: vtkPResampleWithDataSet.h:76
vtkResampleWithDataSet::RequestData
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called within ProcessRequest when a request asks the algorithm to do its work.
vtkMultiProcessController
Multiprocessing communication superclass.
Definition: vtkMultiProcessController.h:75
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:33
vtkInformation
Store vtkAlgorithm input/output information.
Definition: vtkInformation.h:73
vtkResampleWithDataSet::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkResampleWithDataSet
sample point and cell data of a dataset on points from another dataset.
Definition: vtkResampleWithDataSet.h:41
vtkPResampleWithDataSet
Definition: vtkPResampleWithDataSet.h:33
vtkResampleWithDataSet.h