VTK
vtkExtractTemporalFieldData.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkExtractTemporalFieldData.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 =========================================================================*/
43 #ifndef vtkExtractTemporalFieldData_h
44 #define vtkExtractTemporalFieldData_h
45 
46 #include "vtkFiltersExtractionModule.h" // For export macro
47 #include "vtkDataObjectAlgorithm.h"
48 
49 class vtkDataSet;
50 class vtkTable;
52 
53 class VTKFILTERSEXTRACTION_EXPORT vtkExtractTemporalFieldData : public vtkDataObjectAlgorithm
54 {
55 public:
58  void PrintSelf(ostream& os, vtkIndent indent);
59 
63  int GetNumberOfTimeSteps();
64 
66 
71  vtkSetMacro(HandleCompositeDataBlocksIndividually, bool);
72  vtkGetMacro(HandleCompositeDataBlocksIndividually, bool);
73  vtkBooleanMacro(HandleCompositeDataBlocksIndividually, bool);
75 
76 protected:
79 
82  vtkInformationVector*) VTK_OVERRIDE;
84  vtkInformationVector** inputVector,
85  vtkInformationVector* outputVector) VTK_OVERRIDE;
86  int RequestData(vtkInformation* request,
87  vtkInformationVector** inputVector,
88  vtkInformationVector* outputVector) VTK_OVERRIDE;
89  int FillInputPortInformation(int port, vtkInformation* info) VTK_OVERRIDE;
90 
96  bool CopyDataToOutput(vtkDataSet *input, vtkTable *output);
97 
99 private:
100  vtkExtractTemporalFieldData(const vtkExtractTemporalFieldData&) VTK_DELETE_FUNCTION;
101  void operator=(const vtkExtractTemporalFieldData&) VTK_DELETE_FUNCTION;
102 
103  class vtkInternals;
104  vtkInternals* Internals;
105 };
106 
107 #endif
vtkExtractTemporalFieldData
Extract temporal arrays from input field data.
Definition: vtkExtractTemporalFieldData.h:53
vtkDataObjectAlgorithm::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkDataSetAttributes
represent and manipulate attribute data in a dataset
Definition: vtkDataSetAttributes.h:58
vtkInformationVector
Store zero or more vtkInformation instances.
Definition: vtkInformationVector.h:41
vtkTable
A table, which contains similar-typed columns of data.
Definition: vtkTable.h:68
vtkDataObjectAlgorithm
Superclass for algorithms that produce only data object as output.
Definition: vtkDataObjectAlgorithm.h:43
vtkExtractTemporalFieldData::HandleCompositeDataBlocksIndividually
bool HandleCompositeDataBlocksIndividually
Definition: vtkExtractTemporalFieldData.h:98
vtkX3D::port
@ port
Definition: vtkX3D.h:447
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:39
vtkDataSet
abstract class to specify dataset behavior
Definition: vtkDataSet.h:62
vtkBooleanMacro
vtkBooleanMacro(IgnoreDriverBugs, bool)
Updates the extensions string.
vtkInformation
Store vtkAlgorithm input/output information.
Definition: vtkInformation.h:86
vtkSetMacro
vtkSetMacro(IgnoreDriverBugs, bool)
Updates the extensions string.
vtkX3D::info
@ info
Definition: vtkX3D.h:376
vtkDataObjectAlgorithm::New
static vtkDataObjectAlgorithm * New()
vtkDataObjectAlgorithm::RequestData
virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
Definition: vtkDataObjectAlgorithm.h:122
vtkDataObjectAlgorithm.h
vtkDataObjectAlgorithm::FillInputPortInformation
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.
vtkDataObjectAlgorithm::RequestDataObject
virtual int RequestDataObject(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
This is called by the superclass.
Definition: vtkDataObjectAlgorithm.h:104
vtkDataObjectAlgorithm::RequestInformation
virtual int RequestInformation(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)