VTK
|
00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: vtkPParticlePathFilter.h 00005 00006 Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen 00007 All rights reserved. 00008 See Copyright.txt or http://www.kitware.com/Copyright.htm for details. 00009 00010 This software is distributed WITHOUT ANY WARRANTY; without even 00011 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 00012 PURPOSE. See the above copyright notice for more information. 00013 00014 =========================================================================*/ 00025 #ifndef __vtkPParticlePathFilter_h 00026 #define __vtkPParticlePathFilter_h 00027 00028 00029 #include "vtkSmartPointer.h" // For protected ivars. 00030 #include "vtkPParticleTracerBase.h" 00031 #include "vtkParticlePathFilter.h" //for utility 00032 00033 #include "vtkFiltersParallelFlowPathsModule.h" // For export macro 00034 class VTKFILTERSPARALLELFLOWPATHS_EXPORT vtkPParticlePathFilter: public vtkPParticleTracerBase 00035 { 00036 public: 00037 vtkTypeMacro(vtkPParticlePathFilter,vtkPParticleTracerBase) 00038 void PrintSelf(ostream& os, vtkIndent indent); 00039 00040 static vtkPParticlePathFilter *New(); 00041 00042 protected: 00043 vtkPParticlePathFilter(); 00044 ~vtkPParticlePathFilter(){} 00045 00046 virtual void ResetCache(); 00047 virtual int OutputParticles(vtkPolyData* poly); 00048 void Finalize(); 00049 00050 ParticlePathFilterInternal It; 00051 private: 00052 vtkPParticlePathFilter(const vtkPParticlePathFilter&); // Not implemented. 00053 void operator=(const vtkPParticlePathFilter&); // Not implemented 00054 }; 00055 00056 00057 #endif