VTK  9.1.0
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
30#include "vtkParticlePathFilter.h" //for utility
31
32#include "vtkFiltersParallelFlowPathsModule.h" // For export macro
33class VTKFILTERSPARALLELFLOWPATHS_EXPORT vtkPParticlePathFilter : public vtkPParticleTracerBase
34{
35public:
37 void PrintSelf(ostream& os, vtkIndent indent) override;
38
40
41protected:
44
45 void ResetCache() override;
46 int OutputParticles(vtkPolyData* poly) override;
49 void Finalize() override;
50
51 //
52 // Store any information we need in the output and fetch what we can
53 // from the input
54 //
56 vtkInformationVector* outputVector) override;
57
61
62private:
64 void operator=(const vtkPParticlePathFilter&) = delete;
65};
66#endif
dynamic, self-adjusting array of double
a simple class to control print indentation
Definition: vtkIndent.h:113
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
dynamic, self-adjusting array of int
Definition: vtkIntArray.h:149
A Parallel Particle tracer for unsteady vector fields.
~vtkPParticlePathFilter() override
void InitializeExtraPointDataArrays(vtkPointData *outputPD) override
void ResetCache() override
void Finalize() override
int OutputParticles(vtkPolyData *poly) override
int RequestInformation(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector) override
void AppendToExtraPointDataArrays(vtkParticleTracerBaseNamespace::ParticleInformation &) override
ParticlePathFilterInternal It
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
static vtkPParticlePathFilter * New()
represent and manipulate point attribute data
Definition: vtkPointData.h:142
concrete dataset represents vertices, lines, polygons, and triangle strips
Definition: vtkPolyData.h:195