VTK  9.2.5
vtkExtractParticlesOverTime.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkExtractParticlesOverTime.h
5 
6  Copyright (c) Kitware, Inc.
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 =========================================================================*/
31 #ifndef vtkExtractParticlesOverTime_h
32 #define vtkExtractParticlesOverTime_h
33 
34 #include "vtkDataSetAlgorithm.h"
35 #include "vtkFiltersExtractionModule.h" // For export macro
36 #include <memory> // For smart pointers
37 #include <string> // For channel array name
38 
39 class vtkExtractParticlesOverTimeInternals;
40 
41 class VTKFILTERSEXTRACTION_EXPORT vtkExtractParticlesOverTime : public vtkDataSetAlgorithm
42 {
43 public:
45 
50  void PrintSelf(ostream& os, vtkIndent indent) override;
52 
54 
65 
66 protected:
68  ~vtkExtractParticlesOverTime() override = default;
69 
71 
75  vtkInformationVector* outputVector) override;
77  vtkInformationVector* outputVector) override;
78  int RequestData(vtkInformation* request, vtkInformationVector** inputVector,
79  vtkInformationVector* outputVector) override;
81 
82 private:
84  void operator=(const vtkExtractParticlesOverTime&) = delete;
85 
86  std::string IdChannelArray;
87  std::shared_ptr<vtkExtractParticlesOverTimeInternals> Internals;
88 };
89 
90 #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:119
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
@ string
Definition: vtkX3D.h:496