VTK
vtkPCellDataToPointData.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkPCellDataToPointData.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 =========================================================================*/
26 #ifndef vtkPCellDataToPointData_h
27 #define vtkPCellDataToPointData_h
28 
29 #include "vtkFiltersParallelModule.h" // For export macro
30 #include "vtkCellDataToPointData.h"
31 
32 class VTKFILTERSPARALLEL_EXPORT vtkPCellDataToPointData : public vtkCellDataToPointData
33 {
34 public:
36  void PrintSelf(ostream& os, vtkIndent indent) override;
37 
38  static vtkPCellDataToPointData *New();
39 
41 
45  vtkSetMacro(PieceInvariant, vtkTypeBool);
46  vtkGetMacro(PieceInvariant, vtkTypeBool);
47  vtkBooleanMacro(PieceInvariant, vtkTypeBool);
49 
50 protected:
53 
54  // Usual data generation method
55  int RequestData(vtkInformation* request,
56  vtkInformationVector** inputVector,
57  vtkInformationVector* outputVector) override;
60  vtkInformationVector*) override;
61 
63 private:
65  void operator=(const vtkPCellDataToPointData&) = delete;
66 };
67 
68 #endif
int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector) override
This is called within ProcessRequest when a request asks the algorithm to do its work.
static vtkCellDataToPointData * New()
Store vtkAlgorithm input/output information.
int vtkTypeBool
Definition: vtkABI.h:69
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
Compute point arrays from cell arrays.
map cell data to point data
a simple class to control print indentation
Definition: vtkIndent.h:39
virtual int RequestUpdateExtent(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
This is called within ProcessRequest when each filter in the pipeline decides what portion of its inp...
Store zero or more vtkInformation instances.