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 
42 class VTKFILTERSPARALLEL_EXPORT vtkExtractUserDefinedPiece : public vtkExtractUnstructuredGridPiece
43 {
44 public:
47  void PrintSelf(ostream& os, vtkIndent indent) 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 
68  ~vtkExtractUserDefinedPiece() override;
69 
71 
72  void ComputeCellTagsWithFunction(vtkIntArray *tags, vtkIdList *pointOwnership,
73  vtkUnstructuredGrid *input);
74 
75 private:
77  void operator=(const vtkExtractUserDefinedPiece&) = delete;
78 
79  void *ConstantData;
80  int ConstantDataLen;
81 
82  UserDefFunc InPiece;
83 };
84 #endif
Return specified piece, including specified number of ghost levels.
static vtkExtractUnstructuredGridPiece * New()
Store vtkAlgorithm input/output information.
void SetPieceFunction(UserDefFunc func)
int vtkIdType
Definition: vtkType.h:347
dynamic, self-adjusting array of int
Definition: vtkIntArray.h:45
a simple class to control print indentation
Definition: vtkIndent.h:39
list of point or cell ids
Definition: vtkIdList.h:36
dataset represents arbitrary combinations of all possible cell types
virtual void Modified()
Update the modification time for this object.
Return user specified piece with ghost cells.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
Store zero or more vtkInformation instances.