VTK  9.2.5
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
33#include "vtkFiltersParallelModule.h" // For export macro
34
35class VTKFILTERSPARALLEL_EXPORT vtkPCellDataToPointData : public vtkCellDataToPointData
36{
37public:
39 void PrintSelf(ostream& os, vtkIndent indent) override;
40
42
44
48 vtkSetMacro(PieceInvariant, vtkTypeBool);
49 vtkGetMacro(PieceInvariant, vtkTypeBool);
50 vtkBooleanMacro(PieceInvariant, vtkTypeBool);
52
53protected:
55 ~vtkPCellDataToPointData() override = default;
56
57 // Usual data generation method
58 int RequestData(vtkInformation* request, vtkInformationVector** inputVector,
59 vtkInformationVector* outputVector) override;
61
63
64private:
66 void operator=(const vtkPCellDataToPointData&) = delete;
67};
68
69#endif
map cell data to point data
a simple class to control print indentation
Definition: vtkIndent.h:40
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Compute point arrays from cell arrays.
static vtkPCellDataToPointData * New()
void PrintSelf(ostream &os, vtkIndent indent) override
Standard methods for instantiation, type information, and printing.
int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector) override
This is called within ProcessRequest when a request asks the algorithm to do its work.
int RequestUpdateExtent(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called within ProcessRequest when each filter in the pipeline decides what portion of its inp...
~vtkPCellDataToPointData() override=default
int vtkTypeBool
Definition: vtkABI.h:69