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 
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 
62  vtkSetStdStringFromCharMacro(IdChannelArray);
63  vtkGetCharFromStdStringMacro(IdChannelArray);
65 
66 protected:
68  ~vtkExtractParticlesOverTime() override = default;
69 
71 
74  int RequestInformation(vtkInformation* request, vtkInformationVector** inputVector,
75  vtkInformationVector* outputVector) override;
76  int RequestUpdateExtent(vtkInformation* request, vtkInformationVector** inputVector,
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
Store vtkAlgorithm input/output information.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
a simple class to control print indentation
Definition: vtkIndent.h:39
Extract particles that goes through a given volumic data set.
virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
This is called within ProcessRequest when a request asks the algorithm to do its work.
virtual int RequestUpdateExtent(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
This is called within ProcessRequest when each filter in the pipeline decides what portion of its inp...
virtual int RequestInformation(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
This is called within ProcessRequest when a request asks for Information.
Store zero or more vtkInformation instances.
Superclass for algorithms that produce output of the same type as input.
static vtkDataSetAlgorithm * New()