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