VTK  9.4.20250420
vtkExtractParticlesOverTime.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2// SPDX-FileCopyrightText: Copyright (c) Kitware, Inc.
3// SPDX-License-Identifier: BSD-3-Clause
20#ifndef vtkExtractParticlesOverTime_h
21#define vtkExtractParticlesOverTime_h
22
23#include "vtkDataSetAlgorithm.h"
24#include "vtkFiltersExtractionModule.h" // For export macro
25#include <memory> // For smart pointers
26#include <string> // For channel array name
27
28VTK_ABI_NAMESPACE_BEGIN
29class vtkExtractParticlesOverTimeInternals;
30
31class VTKFILTERSEXTRACTION_EXPORT vtkExtractParticlesOverTime : public vtkDataSetAlgorithm
32{
33public:
35
40 void PrintSelf(ostream& os, vtkIndent indent) override;
42
44
55
56protected:
58 ~vtkExtractParticlesOverTime() override = default;
59
61
65 vtkInformationVector* outputVector) override;
67 vtkInformationVector* outputVector) override;
68 int RequestData(vtkInformation* request, vtkInformationVector** inputVector,
69 vtkInformationVector* outputVector) override;
71
72private:
74 void operator=(const vtkExtractParticlesOverTime&) = delete;
75
76 std::string IdChannelArray;
77 std::shared_ptr<vtkExtractParticlesOverTimeInternals> Internals;
78};
79
80VTK_ABI_NAMESPACE_END
81#endif
Superclass for algorithms that produce output of the same type as input.
Extract particles that goes through a given volumic data set.
vtkGetCharFromStdStringMacro(IdChannelArray)
Specify the name of a scalar array which will be used to fetch the index of each point.
vtkSetStdStringFromCharMacro(IdChannelArray)
Specify the name of a scalar array which will be used to fetch the index of each point.
int RequestInformation(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector) override
The necessary parts of the standard pipeline update mechanism.
int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector) override
The necessary parts of the standard pipeline update mechanism.
~vtkExtractParticlesOverTime() override=default
int RequestUpdateExtent(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector) override
The necessary parts of the standard pipeline update mechanism.
static vtkExtractParticlesOverTime * New()
Standard Type-Macro.
void PrintSelf(ostream &os, vtkIndent indent) override
Standard Type-Macro.
a simple class to control print indentation
Definition vtkIndent.h:108
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.