VTK
dox
Filters
Parallel
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
40
#include "
vtkExtractUnstructuredGridPiece.h
"
41
42
class
VTKFILTERSPARALLEL_EXPORT
vtkExtractUserDefinedPiece
:
public
vtkExtractUnstructuredGridPiece
43
{
44
public
:
45
vtkTypeMacro(
vtkExtractUserDefinedPiece
,
vtkExtractUnstructuredGridPiece
);
46
static
vtkExtractUserDefinedPiece
*
New
();
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
65
protected
:
66
67
vtkExtractUserDefinedPiece
();
68
~vtkExtractUserDefinedPiece
();
69
70
virtual
int
RequestData
(
vtkInformation
*,
vtkInformationVector
**,
vtkInformationVector
*);
71
72
void
ComputeCellTagsWithFunction
(
vtkIntArray
*tags,
vtkIdList
*pointOwnership,
73
vtkUnstructuredGrid
*input);
74
75
private
:
76
vtkExtractUserDefinedPiece
(
const
vtkExtractUserDefinedPiece
&) VTK_DELETE_FUNCTION;
77
void
operator=(
const
vtkExtractUserDefinedPiece
&) VTK_DELETE_FUNCTION;
78
79
void
*ConstantData;
80
int
ConstantDataLen;
81
82
UserDefFunc InPiece;
83
};
84
#endif
vtkExtractUserDefinedPiece::~vtkExtractUserDefinedPiece
~vtkExtractUserDefinedPiece()
vtkIdType
int vtkIdType
Definition:
vtkType.h:287
vtkExtractUserDefinedPiece
Return user specified piece with ghost cells.
Definition:
vtkExtractUserDefinedPiece.h:43
vtkX3D::data
@ data
Definition:
vtkX3D.h:315
vtkInformationVector
Store zero or more vtkInformation instances.
Definition:
vtkInformationVector.h:42
vtkExtractUserDefinedPiece::New
static vtkExtractUserDefinedPiece * New()
vtkObject::Modified
virtual void Modified()
Update the modification time for this object.
vtkExtractUserDefinedPiece::SetPieceFunction
void SetPieceFunction(UserDefFunc func)
Definition:
vtkExtractUserDefinedPiece.h:53
vtkExtractUserDefinedPiece::ComputeCellTagsWithFunction
void ComputeCellTagsWithFunction(vtkIntArray *tags, vtkIdList *pointOwnership, vtkUnstructuredGrid *input)
vtkIndent
a simple class to control print indentation
Definition:
vtkIndent.h:40
vtkIntArray
dynamic, self-adjusting array of int
Definition:
vtkIntArray.h:46
vtkExtractUserDefinedPiece::RequestData
virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
This is called by the superclass.
vtkExtractUnstructuredGridPiece
Return specified piece, including specified number of ghost levels.
Definition:
vtkExtractUnstructuredGridPiece.h:34
vtkIdList
list of point or cell ids
Definition:
vtkIdList.h:37
vtkExtractUserDefinedPiece::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkExtractUnstructuredGridPiece.h
vtkInformation
Store vtkAlgorithm input/output information.
Definition:
vtkInformation.h:87
vtkExtractUserDefinedPiece::vtkExtractUserDefinedPiece
vtkExtractUserDefinedPiece()
vtkExtractUserDefinedPiece::GetConstantData
int GetConstantData(void **data)
vtkExtractUserDefinedPiece::SetConstantData
void SetConstantData(void *data, int len)
vtkUnstructuredGrid
dataset represents arbitrary combinations of all possible cell types
Definition:
vtkUnstructuredGrid.h:83
int
int
Definition:
vtkVectorOperators.h:164
Generated by
1.8.20