VTK  9.2.5
vtkDataSetGradient.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkDataSetGradient.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  =========================================================================*/
32 #ifndef vtkDataSetGradient_h
33 #define vtkDataSetGradient_h
34 
35 #include "vtkDataSetAlgorithm.h"
36 #include "vtkFiltersGeneralModule.h" // For export macro
37 
38 class VTKFILTERSGENERAL_EXPORT vtkDataSetGradient : public vtkDataSetAlgorithm
39 {
40 public:
43  void PrintSelf(ostream& os, vtkIndent indent) override;
44 
46 
49  vtkSetStringMacro(ResultArrayName);
50  vtkGetStringMacro(ResultArrayName);
52 
53 protected:
55  ~vtkDataSetGradient() override;
56 
58 
60 
61 private:
62  vtkDataSetGradient(const vtkDataSetGradient&) = delete;
63  void operator=(const vtkDataSetGradient&) = delete;
64 };
65 
66 #endif /* VTK_DATA_SET_GRADIENT_H */
Superclass for algorithms that produce output of the same type as input.
computes scalar field gradient
~vtkDataSetGradient() override
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called within ProcessRequest when a request asks the algorithm to do its work.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
static vtkDataSetGradient * New()
a simple class to control print indentation
Definition: vtkIndent.h:119
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.