VTK  9.0.1
vtkGenericProbeFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkGenericProbeFilter.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 =========================================================================*/
42 #ifndef vtkGenericProbeFilter_h
43 #define vtkGenericProbeFilter_h
44 
45 #include "vtkDataSetAlgorithm.h"
46 #include "vtkFiltersGenericModule.h" // For export macro
47 
48 class vtkIdTypeArray;
49 class vtkGenericDataSet;
50 
51 class VTKFILTERSGENERIC_EXPORT vtkGenericProbeFilter : public vtkDataSetAlgorithm
52 {
53 public:
56  void PrintSelf(ostream& os, vtkIndent indent) override;
57 
59 
66 
68 
72  vtkGetObjectMacro(ValidPoints, vtkIdTypeArray);
74 
75 protected:
78 
81 
83 
85 
86 private:
88  void operator=(const vtkGenericProbeFilter&) = delete;
89 };
90 
91 #endif
vtkGenericProbeFilter::SetSourceData
void SetSourceData(vtkGenericDataSet *source)
Specify the point locations used to probe input.
vtkGenericProbeFilter::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkInformationVector
Store zero or more vtkInformation instances.
Definition: vtkInformationVector.h:36
vtkGenericProbeFilter::ValidPoints
vtkIdTypeArray * ValidPoints
Definition: vtkGenericProbeFilter.h:84
vtkGenericProbeFilter::GetSource
vtkGenericDataSet * GetSource()
vtkGenericDataSet
defines dataset interface
Definition: vtkGenericDataSet.h:70
vtkDataSetAlgorithm
Superclass for algorithms that produce output of the same type as input.
Definition: vtkDataSetAlgorithm.h:49
vtkGenericProbeFilter::FillInputPortInformation
int FillInputPortInformation(int, vtkInformation *) override
Fill the input port information objects for this algorithm.
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:34
vtkGenericProbeFilter::~vtkGenericProbeFilter
~vtkGenericProbeFilter() override
vtkGenericProbeFilter::RequestInformation
int RequestInformation(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called within ProcessRequest when a request asks for Information.
vtkGenericProbeFilter::vtkGenericProbeFilter
vtkGenericProbeFilter()
vtkInformation
Store vtkAlgorithm input/output information.
Definition: vtkInformation.h:65
vtkDataSetAlgorithm.h
vtkIdTypeArray
dynamic, self-adjusting array of vtkIdType
Definition: vtkIdTypeArray.h:36
vtkGenericProbeFilter::RequestData
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called within ProcessRequest when a request asks the algorithm to do its work.
vtkGenericProbeFilter::New
static vtkGenericProbeFilter * New()
source
boost::graph_traits< vtkGraph * >::vertex_descriptor source(boost::graph_traits< vtkGraph * >::edge_descriptor e, vtkGraph *)
Definition: vtkBoostGraphAdapter.h:959
vtkGenericProbeFilter
sample data values at specified point locations
Definition: vtkGenericProbeFilter.h:52