VTK
dox/Parallel/vtkPExtractArraysOverTime.h
Go to the documentation of this file.
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 "vtkExtractArraysOverTime.h"
00038 
00039 class vtkMultiProcessController;
00040 class vtkTable;
00041 
00042 class VTK_PARALLEL_EXPORT vtkPExtractArraysOverTime : public vtkExtractArraysOverTime
00043 {
00044 public:
00045   static vtkPExtractArraysOverTime *New();
00046   vtkTypeMacro(vtkPExtractArraysOverTime,vtkExtractArraysOverTime);
00047   void PrintSelf(ostream& os, vtkIndent indent);
00048 
00050 
00051   virtual void SetController(vtkMultiProcessController*);
00052   vtkGetObjectMacro(Controller, vtkMultiProcessController);
00054 
00055 //BTX
00056   enum Tags
00057   {
00058     EXCHANGE_DATA = 1972
00059   };
00060 //ETX
00061 
00062 protected:
00063   vtkPExtractArraysOverTime();
00064   ~vtkPExtractArraysOverTime();
00065 
00066   virtual void PostExecute(vtkInformation* request,
00067                            vtkInformationVector** inputVector,
00068                            vtkInformationVector* outputVector);
00069   void AddRemoteData(vtkMultiBlockDataSet* routput,
00070                      vtkMultiBlockDataSet* output);
00071   void MergeTables(vtkTable* routput, vtkTable* output);
00072 
00073   vtkMultiProcessController* Controller;
00074 
00075 private:
00076   vtkPExtractArraysOverTime(const vtkPExtractArraysOverTime&);  // Not implemented.
00077   void operator=(const vtkPExtractArraysOverTime&);  // Not implemented.
00078 };
00079 
00080 #endif
00081 
00082 
00083