VTK
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 =========================================================================*/
25 #ifndef vtkPParticlePathFilter_h
26 #define vtkPParticlePathFilter_h
27 
28 #include "vtkPParticleTracerBase.h"
29 #include "vtkParticlePathFilter.h" //for utility
30 
31 #include "vtkFiltersParallelFlowPathsModule.h" // For export macro
32 class VTKFILTERSPARALLELFLOWPATHS_EXPORT vtkPParticlePathFilter: public vtkPParticleTracerBase
33 {
34 public:
36  void PrintSelf(ostream& os, vtkIndent indent);
37 
38  static vtkPParticlePathFilter *New();
39 
40 protected:
42  ~vtkPParticlePathFilter();
43 
44  virtual void ResetCache();
45  virtual int OutputParticles(vtkPolyData* poly);
46  virtual void InitializeExtraPointDataArrays(vtkPointData* outputPD);
47  virtual void AppendToExtraPointDataArrays(vtkParticleTracerBaseNamespace::ParticleInformation &);
48  void Finalize();
49 
51  vtkDoubleArray* SimulationTime;
52  vtkIntArray* SimulationTimeStep;
53 
54 private:
55  vtkPParticlePathFilter(const vtkPParticlePathFilter&); // Not implemented.
56  void operator=(const vtkPParticlePathFilter&); // Not implemented
57 };
58 #endif
represent and manipulate point attribute data
Definition: vtkPointData.h:36
concrete dataset represents vertices, lines, polygons, and triangle strips
Definition: vtkPolyData.h:84
dynamic, self-adjusting array of double
dynamic, self-adjusting array of int
Definition: vtkIntArray.h:49
a simple class to control print indentation
Definition: vtkIndent.h:38
A Parallel Particle tracer for unsteady vector fields.