VTK
vtkCompositeDataProbeFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkCompositeDataProbeFilter.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 =========================================================================*/
38 #ifndef vtkCompositeDataProbeFilter_h
39 #define vtkCompositeDataProbeFilter_h
40 
41 #include "vtkFiltersCoreModule.h" // For export macro
42 #include "vtkProbeFilter.h"
43 
45 class VTKFILTERSCORE_EXPORT vtkCompositeDataProbeFilter : public vtkProbeFilter
46 {
47 public:
50  void PrintSelf(ostream& os, vtkIndent indent) VTK_OVERRIDE;
51 
53 
65  vtkSetMacro(PassPartialArrays, bool);
66  vtkGetMacro(PassPartialArrays, bool);
67  vtkBooleanMacro(PassPartialArrays, bool);
69 
70 protected:
72  ~vtkCompositeDataProbeFilter() VTK_OVERRIDE;
73 
78  int FillInputPortInformation(int port, vtkInformation* info) VTK_OVERRIDE;
79 
83  int BuildFieldList(vtkCompositeDataSet* source);
84 
88  void InitializeForProbing(vtkDataSet *input, vtkDataSet *output) VTK_OVERRIDE;
89 
93  int RequestData(vtkInformation *,
94  vtkInformationVector **, vtkInformationVector *) VTK_OVERRIDE;
95 
99  vtkExecutive* CreateDefaultExecutive() VTK_OVERRIDE;
100 
101  bool PassPartialArrays;
102 private:
103  vtkCompositeDataProbeFilter(const vtkCompositeDataProbeFilter&) VTK_DELETE_FUNCTION;
104  void operator=(const vtkCompositeDataProbeFilter&) VTK_DELETE_FUNCTION;
105 
106 };
107 
108 #endif
109 
110 
sample data values at specified point locations
Store vtkAlgorithm input/output information.
abstract class to specify dataset behavior
Definition: vtkDataSet.h:62
subclass of vtkProbeFilter which supports composite datasets in the input.
Superclass for all pipeline executives in VTK.
Definition: vtkExecutive.h:49
abstract superclass for composite (multi-block or AMR) datasets
a simple class to control print indentation
Definition: vtkIndent.h:39
vtkSetMacro(IgnoreDriverBugs, bool)
When set known driver bugs are ignored during driver feature detection.
boost::graph_traits< vtkGraph * >::vertex_descriptor source(boost::graph_traits< vtkGraph * >::edge_descriptor e, vtkGraph *)
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
Store zero or more vtkInformation instances.
vtkBooleanMacro(IgnoreDriverBugs, bool)
When set known driver bugs are ignored during driver feature detection.
static vtkProbeFilter * New()