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 
38 
40 class vtkTable;
41 
43 {
44 public:
47  void PrintSelf(ostream& os, vtkIndent indent);
48 
50 
51  virtual void SetController(vtkMultiProcessController*);
52  vtkGetObjectMacro(Controller, vtkMultiProcessController);
54 
55 //BTX
56  enum Tags
57  {
58  EXCHANGE_DATA = 1972
59  };
60 //ETX
61 
62 protected:
65 
66  virtual void PostExecute(vtkInformation* request,
67  vtkInformationVector** inputVector,
68  vtkInformationVector* outputVector);
69  void AddRemoteData(vtkMultiBlockDataSet* routput,
70  vtkMultiBlockDataSet* output);
71  void MergeTables(vtkTable* routput, vtkTable* output);
72 
74 
75 private:
76  vtkPExtractArraysOverTime(const vtkPExtractArraysOverTime&); // Not implemented.
77  void operator=(const vtkPExtractArraysOverTime&); // Not implemented.
78 };
79 
80 #endif
81 
82 
83 
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:37
void PrintSelf(ostream &os, vtkIndent indent)
A table, which contains similar-typed columns of data.
Definition: vtkTable.h:66
Composite dataset that organizes datasets into blocks.
#define VTK_PARALLEL_EXPORT
vtkMultiProcessController * Controller
Store zero or more vtkInformation instances.
extract point or cell data over time (parallel)
Multiprocessing communication superclass.