00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: $RCSfile: vtkPCellDataToPointData.h,v $ 00005 Language: C++ 00006 00007 Copyright (c) 1993-2002 Ken Martin, Will Schroeder, Bill Lorensen 00008 All rights reserved. 00009 See Copyright.txt or http://www.kitware.com/Copyright.htm for details. 00010 00011 This software is distributed WITHOUT ANY WARRANTY; without even 00012 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 00013 PURPOSE. See the above copyright notice for more information. 00014 00015 =========================================================================*/ 00039 #ifndef __vtkPCellDataToPointData_h 00040 #define __vtkPCellDataToPointData_h 00041 00042 #include "vtkCellDataToPointData.h" 00043 00044 class VTK_PARALLEL_EXPORT vtkPCellDataToPointData : public vtkCellDataToPointData 00045 { 00046 public: 00047 vtkTypeRevisionMacro(vtkPCellDataToPointData,vtkCellDataToPointData); 00048 void PrintSelf(ostream& os, vtkIndent indent); 00049 00050 static vtkPCellDataToPointData *New(); 00051 00053 00055 vtkSetMacro(PieceInvariant, int); 00056 vtkGetMacro(PieceInvariant, int); 00057 vtkBooleanMacro(PieceInvariant, int); 00059 00060 protected: 00061 vtkPCellDataToPointData(); 00062 ~vtkPCellDataToPointData() {}; 00063 00064 // Usual data generation method 00065 virtual void Execute(); 00066 void ComputeInputUpdateExtents(vtkDataObject *output); 00067 00068 int PieceInvariant; 00069 private: 00070 vtkPCellDataToPointData(const vtkPCellDataToPointData&); // Not implemented. 00071 void operator=(const vtkPCellDataToPointData&); // Not implemented. 00072 }; 00073 00074 #endif