VTK  9.3.1
vtkExtractDataOverTime.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
16 #ifndef vtkExtractDataOverTime_h
17 #define vtkExtractDataOverTime_h
18 
19 #include "vtkFiltersExtractionModule.h" // For export macro
20 #include "vtkPointSetAlgorithm.h"
21 
22 VTK_ABI_NAMESPACE_BEGIN
23 class VTKFILTERSEXTRACTION_EXPORT vtkExtractDataOverTime : public vtkPointSetAlgorithm
24 {
25 public:
26  static vtkExtractDataOverTime* New();
28  void PrintSelf(ostream& os, vtkIndent indent) override;
29 
31 
34  vtkSetMacro(PointIndex, int);
35  vtkGetMacro(PointIndex, int);
37 
39 
42  vtkGetMacro(NumberOfTimeSteps, int);
44 
45 protected:
47  ~vtkExtractDataOverTime() override = default;
48 
49  int RequestInformation(vtkInformation* request, vtkInformationVector** inputVector,
50  vtkInformationVector* outputVector);
51 
54 
55  int AllocateOutputData(vtkPointSet* input, vtkPointSet* output);
56 
60 
61 private:
63  void operator=(const vtkExtractDataOverTime&) = delete;
64 };
65 
66 VTK_ABI_NAMESPACE_END
67 #endif
Store vtkAlgorithm input/output information.
vtkTypeBool ProcessRequest(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector) override
see vtkAlgorithm for details
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
concrete class for storing a set of points
Definition: vtkPointSet.h:58
int vtkTypeBool
Definition: vtkABI.h:64
a simple class to control print indentation
Definition: vtkIndent.h:28
Superclass for algorithms that produce output of the same type as input.
extract point data from a time sequence for a specified point id.
static vtkPointSetAlgorithm * New()
Store zero or more vtkInformation instances.