VTK  9.2.6
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
39class vtkExtractParticlesOverTimeInternals;
40
41class VTKFILTERSEXTRACTION_EXPORT vtkExtractParticlesOverTime : public vtkDataSetAlgorithm
42{
43public:
45
50 void PrintSelf(ostream& os, vtkIndent indent) override;
52
54
65
66protected:
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
82private:
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.
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:40
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.