vtkExtractSelectionRange.h
Go to the documentation of this file.
1 // SPDX-FileCopyrightText: Copyright (c) Kitware Inc.
2 // SPDX-License-Identifier: BSD-3-Clause
12 #ifndef vtkExtractSelectionRange_h
13 #define vtkExtractSelectionRange_h
14 
15 #include "vtkPVVTKExtensionsExtractionModule.h" //needed for exports
16 #include "vtkTableAlgorithm.h"
17 
19 {
20 public:
21  static vtkExtractSelectionRange* New();
23  void PrintSelf(ostream& os, vtkIndent indent) override;
24 
26 
29  vtkSetStringMacro(ArrayName);
30  vtkGetStringMacro(ArrayName);
32 
34 
37  vtkSetMacro(FieldType, int);
38  vtkGetMacro(FieldType, int);
40 
42 
45  vtkSetMacro(Component, int);
46  vtkGetMacro(Component, int);
48 
50 
53  vtkGetVector2Macro(Range, double);
55 
56 protected:
58  ~vtkExtractSelectionRange() override;
59 
60  int FillInputPortInformation(int port, vtkInformation* info) override;
61  int RequestData(vtkInformation* request, vtkInformationVector** inputVector,
62  vtkInformationVector* outputVector) override;
63 
64  int FieldType;
65  int Component;
66  char* ArrayName;
67  double Range[2];
68 
69 private:
71  void operator=(const vtkExtractSelectionRange&) = delete;
72 };
73 
74 #endif
compute the range of the input selection.
static vtkTableAlgorithm * New()
#define VTKPVVTKEXTENSIONSEXTRACTION_EXPORT
void PrintSelf(ostream &os, vtkIndent indent) VTK_OVERRIDE
virtual int FillInputPortInformation(int port, vtkInformation *info)
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
void operator=(const vtkObjectBase &)