VTK
vtkCellDataToPointData.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkCellDataToPointData.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 =========================================================================*/
40 #ifndef __vtkCellDataToPointData_h
41 #define __vtkCellDataToPointData_h
42 
43 #include "vtkDataSetAlgorithm.h"
44 
45 class vtkDataSet;
46 
48 {
49 public:
50  static vtkCellDataToPointData *New();
52  void PrintSelf(ostream& os, vtkIndent indent);
53 
55 
58  vtkSetMacro(PassCellData,int);
59  vtkGetMacro(PassCellData,int);
60  vtkBooleanMacro(PassCellData,int);
62 
63 protected:
66 
67  virtual int RequestData(vtkInformation* request,
68  vtkInformationVector** inputVector,
69  vtkInformationVector* outputVector);
70 
71  // Special traversal algorithm for unstructured grid
72  int RequestDataForUnstructuredGrid
74 
76 private:
77  vtkCellDataToPointData(const vtkCellDataToPointData&); // Not implemented.
78  void operator=(const vtkCellDataToPointData&); // Not implemented.
79 };
80 
81 #endif
82 
83 
#define VTK_GRAPHICS_EXPORT
Store vtkAlgorithm input/output information.
abstract class to specify dataset behavior
Definition: vtkDataSet.h:58
map cell data to point data
a simple class to control print indentation
Definition: vtkIndent.h:37
virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
Store zero or more vtkInformation instances.
void PrintSelf(ostream &os, vtkIndent indent)
Superclass for algorithms that produce output of the same type as input.
static vtkDataSetAlgorithm * New()