VTK  9.2.6
vtkPParticlePathFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkPParticlePathFilter.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
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 =========================================================================*/
26 #ifndef vtkPParticlePathFilter_h
27 #define vtkPParticlePathFilter_h
28 
29 #include "vtkPParticleTracerBase.h"
30 #include "vtkParticlePathFilter.h" //for utility
31 
32 #include "vtkFiltersParallelFlowPathsModule.h" // For export macro
33 class VTKFILTERSPARALLELFLOWPATHS_EXPORT vtkPParticlePathFilter : public vtkPParticleTracerBase
34 {
35 public:
37  void PrintSelf(ostream& os, vtkIndent indent) override;
38 
39  static vtkPParticlePathFilter* New();
40 
41 protected:
43  ~vtkPParticlePathFilter() override;
44 
45  void ResetCache() override;
46  int OutputParticles(vtkPolyData* poly) override;
47  void InitializeExtraPointDataArrays(vtkPointData* outputPD) override;
50  void Finalize() override;
51 
52  //
53  // Store any information we need in the output and fetch what we can
54  // from the input
55  //
56  int RequestInformation(vtkInformation* request, vtkInformationVector** inputVector,
57  vtkInformationVector* outputVector) override;
58 
62 
63 private:
65  void operator=(const vtkPParticlePathFilter&) = delete;
66 };
67 #endif
ParticlePathFilterInternal It
represent and manipulate point attribute data
Definition: vtkPointData.h:41
int RequestInformation(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector) override
Store vtkAlgorithm input/output information.
int vtkIdType
Definition: vtkType.h:332
concrete dataset represents vertices, lines, polygons, and triangle strips
Definition: vtkPolyData.h:90
dynamic, self-adjusting array of double
static vtkPolyDataAlgorithm * New()
dynamic, self-adjusting array of int
Definition: vtkIntArray.h:45
a simple class to control print indentation
Definition: vtkIndent.h:39
virtual void ResetCache()
virtual void InitializeExtraPointDataArrays(vtkPointData *vtkNotUsed(outputPD))
Methods to append values to existing point data arrays that may only be desired on specific concrete ...
virtual void SetToExtraPointDataArrays(vtkIdType, vtkParticleTracerBaseNamespace::ParticleInformation &)
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
Store zero or more vtkInformation instances.
virtual int OutputParticles(vtkPolyData *poly)=0
A Parallel Particle tracer for unsteady vector fields.