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 =========================================================================*/
35 #ifndef vtkPExtractArraysOverTime_h
36 #define vtkPExtractArraysOverTime_h
37 
38 #include "vtkFiltersParallelModule.h" // For export macro
40 
42 class vtkTable;
43 
44 class VTKFILTERSPARALLEL_EXPORT vtkPExtractArraysOverTime : public vtkExtractArraysOverTime
45 {
46 public:
49  void PrintSelf(ostream& os, vtkIndent indent);
50 
52 
55  virtual void SetController(vtkMultiProcessController*);
56  vtkGetObjectMacro(Controller, vtkMultiProcessController);
58 
59  enum Tags
60  {
61  EXCHANGE_DATA = 1972
62  };
63 
64 protected:
67 
68  virtual void PostExecute(vtkInformation* request,
69  vtkInformationVector** inputVector,
70  vtkInformationVector* outputVector);
71  void AddRemoteData(vtkMultiBlockDataSet* routput,
72  vtkMultiBlockDataSet* output);
73  void MergeTables(vtkTable* routput, vtkTable* output);
74 
76 
77 private:
78  vtkPExtractArraysOverTime(const vtkPExtractArraysOverTime&) VTK_DELETE_FUNCTION;
79  void operator=(const vtkPExtractArraysOverTime&) VTK_DELETE_FUNCTION;
80 };
81 
82 #endif
83 
84 
85 
virtual void PostExecute(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
static vtkExtractArraysOverTime * New()
Store vtkAlgorithm input/output information.
extracts a selection over time.
a simple class to control print indentation
Definition: vtkIndent.h:39
void PrintSelf(ostream &os, vtkIndent indent)
Methods invoked by print to print information about the object including superclasses.
A table, which contains similar-typed columns of data.
Definition: vtkTable.h:68
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.