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);
37 
38  static vtkPCellDataToPointData *New();
39 
41 
45  vtkSetMacro(PieceInvariant, int);
46  vtkGetMacro(PieceInvariant, int);
47  vtkBooleanMacro(PieceInvariant, int);
49 
50 protected:
53 
54  // Usual data generation method
55  virtual int RequestData(vtkInformation* request,
56  vtkInformationVector** inputVector,
57  vtkInformationVector* outputVector);
61 
63 private:
64  vtkPCellDataToPointData(const vtkPCellDataToPointData&) VTK_DELETE_FUNCTION;
65  void operator=(const vtkPCellDataToPointData&) VTK_DELETE_FUNCTION;
66 };
67 
68 #endif
vtkInformationVector
Store zero or more vtkInformation instances.
Definition: vtkInformationVector.h:41
vtkCellDataToPointData::RequestData
int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector) override
This is called within ProcessRequest when a request asks the algorithm to do its work.
vtkCellDataToPointData.h
vtkCellDataToPointData::New
static vtkCellDataToPointData * New()
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:39
vtkCellDataToPointData::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkCellDataToPointData
map cell data to point data
Definition: vtkCellDataToPointData.h:49
vtkPCellDataToPointData
Compute point arrays from cell arrays.
Definition: vtkPCellDataToPointData.h:32
vtkBooleanMacro
vtkBooleanMacro(IgnoreDriverBugs, bool)
Updates the extensions string.
vtkInformation
Store vtkAlgorithm input/output information.
Definition: vtkInformation.h:86
vtkSetMacro
vtkSetMacro(IgnoreDriverBugs, bool)
Updates the extensions string.
vtkPCellDataToPointData::~vtkPCellDataToPointData
~vtkPCellDataToPointData()
Definition: vtkPCellDataToPointData.h:52
vtkDataSetAlgorithm::RequestUpdateExtent
virtual int RequestUpdateExtent(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
This is called within ProcessRequest when each filter in the pipeline decides what portion of its inp...
Definition: vtkDataSetAlgorithm.h:155
vtkPCellDataToPointData::PieceInvariant
int PieceInvariant
Definition: vtkPCellDataToPointData.h:62