VTK  9.5.20250722
vtkExtractDataArraysOverTime.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2// SPDX-License-Identifier: BSD-3-Clause
50#ifndef vtkExtractDataArraysOverTime_h
51#define vtkExtractDataArraysOverTime_h
52
53#include "vtkDataObject.h" // for vtkDataObject
54#include "vtkFiltersExtractionModule.h" // For export macro
56#include "vtkSmartPointer.h" // for vtkSmartPointer.
57
58VTK_ABI_NAMESPACE_BEGIN
59class vtkDataSet;
60class vtkTable;
64
65class VTKFILTERSEXTRACTION_EXPORT vtkExtractDataArraysOverTime
67{
68public:
71 void PrintSelf(ostream& os, vtkIndent indent) override;
72
74
77 vtkGetMacro(NumberOfTimeSteps, int);
79
81
86 vtkSetClampMacro(
88 vtkGetMacro(FieldAssociation, int);
90
92
102 vtkSetMacro(ReportStatisticsOnly, bool);
103 vtkGetMacro(ReportStatisticsOnly, bool);
104 vtkBooleanMacro(ReportStatisticsOnly, bool);
106
108
112 vtkSetMacro(UseGlobalIDs, bool);
113 vtkGetMacro(UseGlobalIDs, bool);
115
116protected:
119
121 vtkInformationVector* outputVector) override;
123 vtkInformationVector* outputVector) override;
125 vtkInformationVector* outputVector) override;
126
127 virtual void PostExecute(vtkInformation* request, vtkInformationVector** inputVector,
128 vtkInformationVector* outputVector);
129
130 int FillInputPortInformation(int port, vtkInformation* info) override;
131
137 int Error;
139 {
141 MoreThan1Indices
142 };
143
146
147private:
149 void operator=(const vtkExtractDataArraysOverTime&) = delete;
150
151 class vtkInternal;
152 friend class vtkInternal;
153 vtkInternal* Internal;
154};
155VTK_ABI_NAMESPACE_END
156#endif
represent and manipulate attribute data in a dataset
abstract class to specify dataset behavior
Definition vtkDataSet.h:165
A class for univariate descriptive statistics.
extracts array from input dataset over time.
int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector) override
This is called by the superclass.
~vtkExtractDataArraysOverTime() override
virtual void PostExecute(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
static vtkExtractDataArraysOverTime * New()
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.
int RequestUpdateExtent(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector) override
This is called by the superclass.
int RequestInformation(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector) override
This is called by the superclass.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
virtual vtkSmartPointer< vtkDescriptiveStatistics > NewDescriptiveStatistics()
virtual vtkSmartPointer< vtkOrderStatistics > NewOrderStatistics()
a simple class to control print indentation
Definition vtkIndent.h:108
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Superclass for algorithms that produce only vtkMultiBlockDataSet as output.
A class for univariate order statistics.
Hold a reference to a vtkObjectBase instance.
A table, which contains similar-typed columns of data.
Definition vtkTable.h:169