00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00024 #ifndef __vtkIntegrateFlowThroughSurface_h
00025 #define __vtkIntegrateFlowThroughSurface_h
00026
00027 #include "vtkUnstructuredGridAlgorithm.h"
00028
00029 class vtkIdList;
00030 class vtkDataSetAttributes;
00031
00032 class VTK_EXPORT vtkIntegrateFlowThroughSurface : public vtkUnstructuredGridAlgorithm
00033 {
00034 public:
00035 vtkTypeRevisionMacro(vtkIntegrateFlowThroughSurface,vtkUnstructuredGridAlgorithm);
00036 void PrintSelf(ostream& os, vtkIndent indent);
00037 static vtkIntegrateFlowThroughSurface *New();
00038
00039 protected:
00040 vtkIntegrateFlowThroughSurface();
00041 ~vtkIntegrateFlowThroughSurface();
00042
00043
00044
00045 virtual int RequestData(vtkInformation *,
00046 vtkInformationVector **,
00047 vtkInformationVector *);
00048 virtual int RequestUpdateExtent(vtkInformation*,
00049 vtkInformationVector**,
00050 vtkInformationVector*);
00051
00052 virtual int FillInputPortInformation(int port, vtkInformation* info);
00053
00054
00055 virtual vtkExecutive* CreateDefaultExecutive();
00056
00057 vtkDataSet* GenerateSurfaceVectors(vtkDataSet* input,
00058 vtkInformationVector **inputVector);
00059
00060 private:
00061 vtkIntegrateFlowThroughSurface(const vtkIntegrateFlowThroughSurface&);
00062 void operator=(const vtkIntegrateFlowThroughSurface&);
00063 };
00064
00065 #endif