VTK
vtkPExtractArraysOverTime.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkPExtractArraysOverTime.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
34 #ifndef vtkPExtractArraysOverTime_h
35 #define vtkPExtractArraysOverTime_h
36 
37 #include "vtkFiltersParallelModule.h" // For export macro
39 
41 class vtkTable;
42 
44 {
45 public:
48  void PrintSelf(ostream& os, vtkIndent indent);
49 
51 
52  virtual void SetController(vtkMultiProcessController*);
53  vtkGetObjectMacro(Controller, vtkMultiProcessController);
55 
56 //BTX
57  enum Tags
58  {
59  EXCHANGE_DATA = 1972
60  };
61 //ETX
62 
63 protected:
66 
67  virtual void PostExecute(vtkInformation* request,
68  vtkInformationVector** inputVector,
69  vtkInformationVector* outputVector);
70  void AddRemoteData(vtkMultiBlockDataSet* routput,
71  vtkMultiBlockDataSet* output);
72  void MergeTables(vtkTable* routput, vtkTable* output);
73 
75 
76 private:
77  vtkPExtractArraysOverTime(const vtkPExtractArraysOverTime&); // Not implemented.
78  void operator=(const vtkPExtractArraysOverTime&); // Not implemented.
79 };
80 
81 #endif
82 
83 
84 
virtual void PostExecute(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
static vtkExtractArraysOverTime * New()
Store vtkAlgorithm input/output information.
extracts a selection over time.
#define VTKFILTERSPARALLEL_EXPORT
a simple class to control print indentation
Definition: vtkIndent.h:38
void PrintSelf(ostream &os, vtkIndent indent)
A table, which contains similar-typed columns of data.
Definition: vtkTable.h:67
Composite dataset that organizes datasets into blocks.
vtkMultiProcessController * Controller
Store zero or more vtkInformation instances.
extract point or cell data over time (parallel)
Multiprocessing communication superclass.