VTK
|
00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: vtkPExtractArraysOverTime.h 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 =========================================================================*/ 00034 #ifndef __vtkPExtractArraysOverTime_h 00035 #define __vtkPExtractArraysOverTime_h 00036 00037 #include "vtkFiltersParallelModule.h" // For export macro 00038 #include "vtkExtractArraysOverTime.h" 00039 00040 class vtkMultiProcessController; 00041 class vtkTable; 00042 00043 class VTKFILTERSPARALLEL_EXPORT vtkPExtractArraysOverTime : public vtkExtractArraysOverTime 00044 { 00045 public: 00046 static vtkPExtractArraysOverTime *New(); 00047 vtkTypeMacro(vtkPExtractArraysOverTime,vtkExtractArraysOverTime); 00048 void PrintSelf(ostream& os, vtkIndent indent); 00049 00051 00052 virtual void SetController(vtkMultiProcessController*); 00053 vtkGetObjectMacro(Controller, vtkMultiProcessController); 00055 00056 //BTX 00057 enum Tags 00058 { 00059 EXCHANGE_DATA = 1972 00060 }; 00061 //ETX 00062 00063 protected: 00064 vtkPExtractArraysOverTime(); 00065 ~vtkPExtractArraysOverTime(); 00066 00067 virtual void PostExecute(vtkInformation* request, 00068 vtkInformationVector** inputVector, 00069 vtkInformationVector* outputVector); 00070 void AddRemoteData(vtkMultiBlockDataSet* routput, 00071 vtkMultiBlockDataSet* output); 00072 void MergeTables(vtkTable* routput, vtkTable* output); 00073 00074 vtkMultiProcessController* Controller; 00075 00076 private: 00077 vtkPExtractArraysOverTime(const vtkPExtractArraysOverTime&); // Not implemented. 00078 void operator=(const vtkPExtractArraysOverTime&); // Not implemented. 00079 }; 00080 00081 #endif 00082 00083 00084