VTK  9.3.0
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 
28 VTK_ABI_NAMESPACE_BEGIN
29 class vtkExtractParticlesOverTimeInternals;
30 
31 class VTKFILTERSEXTRACTION_EXPORT vtkExtractParticlesOverTime : public vtkDataSetAlgorithm
32 {
33 public:
35 
40  void PrintSelf(ostream& os, vtkIndent indent) override;
42 
44 
55 
56 protected:
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 
72 private:
74  void operator=(const vtkExtractParticlesOverTime&) = delete;
75 
76  std::string IdChannelArray;
77  std::shared_ptr<vtkExtractParticlesOverTimeInternals> Internals;
78 };
79 
80 VTK_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.
static vtkExtractParticlesOverTime * New()
Standard Type-Macro.
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.
void PrintSelf(ostream &os, vtkIndent indent) override
Standard Type-Macro.
a simple class to control print indentation
Definition: vtkIndent.h:29
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
@ string
Definition: vtkX3D.h:490