ParaView
vtkIntegrateFlowThroughSurface.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkIntegrateFlowThroughSurface.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 vtkIntegrateFlowThroughSurface_h
26 #define vtkIntegrateFlowThroughSurface_h
27 
28 #include "vtkPVVTKExtensionsDefaultModule.h" //needed for exports
29 #include "vtkUnstructuredGridAlgorithm.h"
30 
31 class vtkIdList;
32 class vtkDataSetAttributes;
33 
34 class VTKPVVTKEXTENSIONSDEFAULT_EXPORT vtkIntegrateFlowThroughSurface
35  : public vtkUnstructuredGridAlgorithm
36 {
37 public:
38  vtkTypeMacro(vtkIntegrateFlowThroughSurface, vtkUnstructuredGridAlgorithm);
39  void PrintSelf(ostream& os, vtkIndent indent);
40  static vtkIntegrateFlowThroughSurface* New();
41 
42 protected:
45 
46  // Usual data generation method
47  // Usual data generation method
48  virtual int RequestData(vtkInformation*, vtkInformationVector**, vtkInformationVector*);
49  virtual int RequestUpdateExtent(vtkInformation*, vtkInformationVector**, vtkInformationVector*);
50 
51  virtual int FillInputPortInformation(int port, vtkInformation* info);
52 
53  // Create a default executive.
54  virtual vtkExecutive* CreateDefaultExecutive();
55 
56  vtkDataSet* GenerateSurfaceVectors(vtkDataSet* input);
57 
58 private:
60  void operator=(const vtkIntegrateFlowThroughSurface&) VTK_DELETE_FUNCTION;
61 };
62 
63 #endif