Main Page   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members   File Members   Related Pages  

Parallel/vtkPVGeometryFilter.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    $RCSfile: vtkPVGeometryFilter.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 =========================================================================*/
00041 #ifndef __vtkPVGeometryFilter_h
00042 #define __vtkPVGeometryFilter_h
00043 
00044 #include "vtkDataSetSurfaceFilter.h"
00045 
00046 class vtkImageData;
00047 class vtkStructuredGrid;
00048 class vtkRectilinearGrid;
00049 class vtkUnstructuredGrid;
00050 
00051 class VTK_PARALLEL_EXPORT vtkPVGeometryFilter : public vtkDataSetSurfaceFilter
00052 {
00053 public:
00054   static vtkPVGeometryFilter *New();
00055   vtkTypeRevisionMacro(vtkPVGeometryFilter,vtkDataSetSurfaceFilter);
00056   void PrintSelf(ostream& os, vtkIndent indent);
00057 
00059 
00061   vtkGetMacro(OutlineFlag, int);
00063 
00064 protected:
00065   vtkPVGeometryFilter();
00066   ~vtkPVGeometryFilter();
00067 
00068   void Execute();
00069   void ImageDataExecute(vtkImageData *input);
00070   void StructuredGridExecute(vtkStructuredGrid *input);
00071   void RectilinearGridExecute(vtkRectilinearGrid *input);
00072   void UnstructuredGridExecute(vtkUnstructuredGrid *input);
00073 
00074   int OutlineFlag;
00075 
00076 private:
00077   vtkPVGeometryFilter(const vtkPVGeometryFilter&); // Not implemented
00078   void operator=(const vtkPVGeometryFilter&); // Not implemented
00079 };
00080 
00081 #endif
00082 
00083