VTK
|
00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: vtkPExtractRectilinearGrid.cxx 00005 00006 Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen 00007 All rights reserved. 00008 See Copyright.txt or http://www.kitware.com/Copyright.htm for details. 00009 00010 This software is distributed WITHOUT ANY WARRANTY; without even 00011 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 00012 PURPOSE. See the above copyright notice for more information. 00013 00014 =========================================================================*/ 00030 #ifndef vtkPExtractRectilinearGrid_h 00031 #define vtkPExtractRectilinearGrid_h 00032 00033 #include "vtkFiltersParallelMPIModule.h" // For export macro 00034 #include "vtkExtractRectilinearGrid.h" 00035 00036 // Forward Declarations 00037 class vtkInformation; 00038 class vtkInformationVector; 00039 class vtkMPIController; 00040 00041 class VTKFILTERSPARALLELMPI_EXPORT vtkPExtractRectilinearGrid : 00042 public vtkExtractRectilinearGrid 00043 { 00044 public: 00045 static vtkPExtractRectilinearGrid* New(); 00046 vtkTypeMacro(vtkPExtractRectilinearGrid,vtkExtractRectilinearGrid); 00047 void PrintSelf(ostream& os, vtkIndent indent); 00048 00049 protected: 00050 vtkPExtractRectilinearGrid(); 00051 virtual ~vtkPExtractRectilinearGrid(); 00052 00053 // Standard VTK Pipeline methods 00054 virtual int RequestData( 00055 vtkInformation*, vtkInformationVector**,vtkInformationVector*); 00056 virtual int RequestInformation( 00057 vtkInformation*, vtkInformationVector**, vtkInformationVector*); 00058 virtual int RequestUpdateExtent( 00059 vtkInformation*, vtkInformationVector**, vtkInformationVector*); 00060 00061 vtkMPIController* Controller; 00062 00063 private: 00064 vtkPExtractRectilinearGrid(const vtkPExtractRectilinearGrid&); // Not implemented. 00065 void operator=(const vtkPExtractRectilinearGrid&); // Not implemented. 00066 }; 00067 00068 #endif /* VTKPEXTRACTRECTILINEARGRID_H_ */