VTK
vtkExtractUserDefinedPiece.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkExtractUserDefinedPiece.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=========================================================================*/
15/*----------------------------------------------------------------------------
16 Copyright (c) Sandia Corporation
17 See Copyright.txt or http://www.paraview.org/HTML/Copyright.html for details.
18----------------------------------------------------------------------------*/
19
36#ifndef vtkExtractUserDefinedPiece_h
37#define vtkExtractUserDefinedPiece_h
38
39#include "vtkFiltersParallelModule.h" // For export macro
41
42class VTKFILTERSPARALLEL_EXPORT vtkExtractUserDefinedPiece : public vtkExtractUnstructuredGridPiece
43{
44public:
47 void PrintSelf(ostream& os, vtkIndent indent) VTK_OVERRIDE;
48
49 typedef int (*UserDefFunc)(vtkIdType cellID, vtkUnstructuredGrid *grid, void *constantData);
50
51 // Set the function used to identify the piece. The function should
52 // return 1 if the cell is in the piece, and 0 otherwise.
53 void SetPieceFunction(UserDefFunc func) {this->InPiece = func; this->Modified();}
54
55 // Set constant data to be used by the piece identifying function.
56 void SetConstantData(void *data, int len);
57
58 // Get constant data to be used by the piece identifying function.
59 // Return the length of the data buffer.
60 int GetConstantData(void **data);
61
62 // The function should return 1 if the cell
63 // is in the piece, and 0 otherwise.
64
65protected:
66
69
71
73 vtkUnstructuredGrid *input);
74
75private:
77 void operator=(const vtkExtractUserDefinedPiece&) VTK_DELETE_FUNCTION;
78
79 void *ConstantData;
80 int ConstantDataLen;
81
82 UserDefFunc InPiece;
83};
84#endif
Return specified piece, including specified number of ghost levels.
Return user specified piece with ghost cells.
virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
This is called by the superclass.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
int GetConstantData(void **data)
static vtkExtractUserDefinedPiece * New()
void SetPieceFunction(UserDefFunc func)
void SetConstantData(void *data, int len)
void ComputeCellTagsWithFunction(vtkIntArray *tags, vtkIdList *pointOwnership, vtkUnstructuredGrid *input)
list of point or cell ids
Definition: vtkIdList.h:37
a simple class to control print indentation
Definition: vtkIndent.h:40
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
dynamic, self-adjusting array of int
Definition: vtkIntArray.h:46
virtual void Modified()
Update the modification time for this object.
dataset represents arbitrary combinations of all possible cell types
@ data
Definition: vtkX3D.h:315
int vtkIdType
Definition: vtkType.h:287