VTK  9.1.0
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
30#include "vtkFiltersParallelModule.h" // For export macro
31
32class VTKFILTERSPARALLEL_EXPORT vtkPCellDataToPointData : public vtkCellDataToPointData
33{
34public:
36 void PrintSelf(ostream& os, vtkIndent indent) override;
37
39
41
45 vtkSetMacro(PieceInvariant, vtkTypeBool);
46 vtkGetMacro(PieceInvariant, vtkTypeBool);
47 vtkBooleanMacro(PieceInvariant, vtkTypeBool);
49
50protected:
52 ~vtkPCellDataToPointData() override = default;
53
54 // Usual data generation method
55 int RequestData(vtkInformation* request, vtkInformationVector** inputVector,
56 vtkInformationVector* outputVector) override;
58
60
61private:
63 void operator=(const vtkPCellDataToPointData&) = delete;
64};
65
66#endif
map cell data to point data
a simple class to control print indentation
Definition: vtkIndent.h:113
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