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
42class vtkTable;
43
44class VTKFILTERSPARALLEL_EXPORT vtkPExtractArraysOverTime : public vtkExtractArraysOverTime
45{
46public:
49 void PrintSelf(ostream& os, vtkIndent indent);
50
52
56 vtkGetObjectMacro(Controller, vtkMultiProcessController);
58
59 enum Tags
60 {
61 EXCHANGE_DATA = 1972
62 };
63
64protected:
67
68 virtual void PostExecute(vtkInformation* request,
69 vtkInformationVector** inputVector,
70 vtkInformationVector* outputVector);
72 vtkMultiBlockDataSet* output);
73 void MergeTables(vtkTable* routput, vtkTable* output);
74
76
77private:
78 vtkPExtractArraysOverTime(const vtkPExtractArraysOverTime&) VTK_DELETE_FUNCTION;
79 void operator=(const vtkPExtractArraysOverTime&) VTK_DELETE_FUNCTION;
80};
81
82#endif
83
84
85
extracts a selection over time.
a simple class to control print indentation
Definition: vtkIndent.h:40
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Composite dataset that organizes datasets into blocks.
Multiprocessing communication superclass.
extract point or cell data over time (parallel)
void AddRemoteData(vtkMultiBlockDataSet *routput, vtkMultiBlockDataSet *output)
static vtkPExtractArraysOverTime * New()
void MergeTables(vtkTable *routput, vtkTable *output)
void PrintSelf(ostream &os, vtkIndent indent)
Methods invoked by print to print information about the object including superclasses.
virtual void SetController(vtkMultiProcessController *)
Set and get the controller.
virtual void PostExecute(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
vtkMultiProcessController * Controller
A table, which contains similar-typed columns of data.
Definition: vtkTable.h:69