VTK  9.2.6
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 =========================================================================*/
29 #ifndef vtkPCellDataToPointData_h
30 #define vtkPCellDataToPointData_h
31 
32 #include "vtkCellDataToPointData.h"
33 #include "vtkFiltersParallelModule.h" // For export macro
34 
35 class VTKFILTERSPARALLEL_EXPORT vtkPCellDataToPointData : public vtkCellDataToPointData
36 {
37 public:
39  void PrintSelf(ostream& os, vtkIndent indent) override;
40 
41  static vtkPCellDataToPointData* New();
42 
44 
48  vtkSetMacro(PieceInvariant, vtkTypeBool);
49  vtkGetMacro(PieceInvariant, vtkTypeBool);
50  vtkBooleanMacro(PieceInvariant, vtkTypeBool);
52 
53 protected:
55  ~vtkPCellDataToPointData() override = default;
56 
57  // Usual data generation method
58  int RequestData(vtkInformation* request, vtkInformationVector** inputVector,
59  vtkInformationVector* outputVector) override;
61 
63 
64 private:
66  void operator=(const vtkPCellDataToPointData&) = delete;
67 };
68 
69 #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()
Standard methods for instantiation, type information, and printing.
Store vtkAlgorithm input/output information.
int vtkTypeBool
Definition: vtkABI.h:69
void PrintSelf(ostream &os, vtkIndent indent) override
Standard methods for instantiation, type information, and printing.
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.