VTK
vtkSMPContourGrid.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkSMPContourGrid.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 =========================================================================*/
25 #ifndef vtkSMPContourGrid_h
26 #define vtkSMPContourGrid_h
27 
28 #include "vtkFiltersSMPModule.h" // For export macro
29 #include "vtkContourGrid.h"
30 
32 {
33 public:
35  void PrintSelf(ostream& os, vtkIndent indent);
36 
38  static vtkSMPContourGrid *New();
39 
41 
48  vtkSetMacro(MergePieces, bool);
49  vtkGetMacro(MergePieces, bool);
50  vtkBooleanMacro(MergePieces, bool);
52 
54 
55  virtual int ProcessRequest(vtkInformation*,
59 
60 protected:
63 
64  virtual int RequestDataObject(vtkInformation *, vtkInformationVector **, vtkInformationVector *);
66 
68 
70 
71 private:
72  vtkSMPContourGrid(const vtkSMPContourGrid&); // Not implemented.
73  void operator=(const vtkSMPContourGrid&); // Not implemented.
74 };
75 
76 #endif
static vtkContourGrid * New()
generate isosurfaces/isolines from scalar values (specialized for unstructured grids) ...
virtual int FillOutputPortInformation(int port, vtkInformation *info)
Store vtkAlgorithm input/output information.
virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
virtual int ProcessRequest(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
a subclass of vtkContourGrid that works in parallel vtkSMPContourGrid performs the same functionaliy ...
a simple class to control print indentation
Definition: vtkIndent.h:38
void PrintSelf(ostream &os, vtkIndent indent)
Store zero or more vtkInformation instances.
#define VTKFILTERSSMP_EXPORT