VTK  9.3.1
vtkQuadraturePointInterpolator.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
23 #ifndef vtkQuadraturePointInterpolator_h
24 #define vtkQuadraturePointInterpolator_h
25 
26 #include "vtkDataSetAlgorithm.h"
27 #include "vtkFiltersGeneralModule.h" // For export macro
28 
29 VTK_ABI_NAMESPACE_BEGIN
31 class vtkInformation;
33 
34 class VTKFILTERSGENERAL_EXPORT vtkQuadraturePointInterpolator : public vtkDataSetAlgorithm
35 {
36 public:
39  void PrintSelf(ostream& os, vtkIndent indent) override;
40 
41 protected:
44  int RequestData(
45  vtkInformation* req, vtkInformationVector** input, vtkInformationVector* output) override;
48 
49 private:
51  void operator=(const vtkQuadraturePointInterpolator&) = delete;
52  //
53  void Clear();
55 
61  int InterpolateFields(vtkUnstructuredGrid* usgOut);
63 };
64 
65 VTK_ABI_NAMESPACE_END
66 #endif
Store vtkAlgorithm input/output information.
int FillOutputPortInformation(int port, vtkInformation *info) override
Fill the output port information objects for this algorithm.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
a simple class to control print indentation
Definition: vtkIndent.h:28
dataset represents arbitrary combinations of all possible cell types
virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
This is called within ProcessRequest when a request asks the algorithm to do its work.
Store zero or more vtkInformation instances.
Superclass for algorithms that produce output of the same type as input.
static vtkDataSetAlgorithm * New()
Interpolates each scalar/vector field in a vtkUnstrcturedGrid on its input to a specific set of quadr...
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.