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 =========================================================================*/
37 #ifndef __vtkCompositeDataProbeFilter_h
38 #define __vtkCompositeDataProbeFilter_h
39 
40 #include "vtkProbeFilter.h"
41 
44 {
45 public:
48  void PrintSelf(ostream& os, vtkIndent indent);
49 
51 
62  vtkSetMacro(PassPartialArrays, bool);
63  vtkGetMacro(PassPartialArrays, bool);
64  vtkBooleanMacro(PassPartialArrays, bool);
66 
67 //BTX
68 protected:
71 
75 
78 
81  virtual void InitializeForProbing(vtkDataSet *input, vtkDataSet *output);
82 
84 
85  virtual int RequestData(vtkInformation *,
88 
91 
93 private:
94  vtkCompositeDataProbeFilter(const vtkCompositeDataProbeFilter&); // Not implemented.
95  void operator=(const vtkCompositeDataProbeFilter&); // Not implemented.
96 //ETX
97 };
98 
99 #endif
100 
101