]> Creatis software - creaVtk.git/blob - bbtk_creaVtk_PKG/src/bbcreaVtkMagnitudVector.h
#3513 CleanMeshWithPatch
[creaVtk.git] / bbtk_creaVtk_PKG / src / bbcreaVtkMagnitudVector.h
1 //===== 
2 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
3 //===== 
4 #ifndef __bbcreaVtkMagnitudVector_h_INCLUDED__
5 #define __bbcreaVtkMagnitudVector_h_INCLUDED__
6
7 #include "bbcreaVtk_EXPORT.h"
8 #include "bbtkAtomicBlackBox.h"
9 #include "iostream"
10
11 #include <vtkVersionMacros.h>
12 #include "vtkImageData.h"
13
14 namespace bbcreaVtk
15 {
16
17 class bbcreaVtk_EXPORT MagnitudVector
18  : 
19    public bbtk::AtomicBlackBox
20 {
21   BBTK_BLACK_BOX_INTERFACE(MagnitudVector,bbtk::AtomicBlackBox);
22 //===== 
23 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
24 //===== 
25   BBTK_DECLARE_INPUT(vX,vtkImageData*);
26   BBTK_DECLARE_INPUT(vY,vtkImageData*);
27   BBTK_DECLARE_INPUT(vZ,vtkImageData*);
28   BBTK_DECLARE_OUTPUT(Out,vtkImageData*);
29   BBTK_PROCESS(Process);
30   void Process();
31
32         vtkImageData* imageoutput;
33
34 //===== 
35 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
36 //===== 
37 };
38
39 BBTK_BEGIN_DESCRIBE_BLACK_BOX(MagnitudVector,bbtk::AtomicBlackBox);
40   BBTK_NAME("MagnitudVector");
41   BBTK_AUTHOR("InfoDev");
42   BBTK_DESCRIPTION("No Description.");
43   BBTK_CATEGORY("empty");
44   BBTK_INPUT(MagnitudVector,vX,"component X of the vector",vtkImageData*,"");
45   BBTK_INPUT(MagnitudVector,vY,"component Y of the vector",vtkImageData*,"");
46   BBTK_INPUT(MagnitudVector,vZ,"component Z of the vector",vtkImageData*,"");
47   BBTK_OUTPUT(MagnitudVector,Out,"Image with the Magnitud",vtkImageData*,"");
48 BBTK_END_DESCRIBE_BLACK_BOX(MagnitudVector);
49 //===== 
50 // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost)
51 //===== 
52 }
53 // EO namespace bbcreaVtk
54
55 #endif // __bbcreaVtkMagnitudVector_h_INCLUDED__
56