]> Creatis software - bbtk.git/blob - packages/vtk/src/bbvtkCleanExternalPlane.cxx
c7306d06451dfd0727445ada6899869c7cabf409
[bbtk.git] / packages / vtk / src / bbvtkCleanExternalPlane.cxx
1 /*
2  # ---------------------------------------------------------------------
3  #
4  # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image
5  #                        pour la SantÈ)
6  # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
7  # Previous Authors : Laurent Guigues, Jean-Pierre Roux
8  # CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil
9  #
10  #  This software is governed by the CeCILL-B license under French law and
11  #  abiding by the rules of distribution of free software. You can  use,
12  #  modify and/ or redistribute the software under the terms of the CeCILL-B
13  #  license as circulated by CEA, CNRS and INRIA at the following URL
14  #  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
15  #  or in the file LICENSE.txt.
16  #
17  #  As a counterpart to the access to the source code and  rights to copy,
18  #  modify and redistribute granted by the license, users are provided only
19  #  with a limited warranty  and the software's author,  the holder of the
20  #  economic rights,  and the successive licensors  have only  limited
21  #  liability.
22  #
23  #  The fact that you are presently reading this means that you have had
24  #  knowledge of the CeCILL-B license and that you accept its terms.
25  # ------------------------------------------------------------------------ */
26
27
28 //=====
29 // 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)
30 //===== 
31 #include "bbvtkCleanExternalPlane.h"
32 #include "bbvtkPackage.h"
33 namespace bbvtk
34 {
35
36 BBTK_ADD_BLACK_BOX_TO_PACKAGE(vtk,CleanExternalPlane)
37 BBTK_BLACK_BOX_IMPLEMENTATION(CleanExternalPlane,bbtk::AtomicBlackBox);
38 //===== 
39 // 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)
40 //===== 
41 void CleanExternalPlane::Process()
42 {
43
44 // THE MAIN PROCESSING METHOD BODY
45 //   Here we simply set the input 'In' value to the output 'Out'
46 //   And print out the output value
47 // INPUT/OUTPUT ACCESSORS ARE OF THE FORM :
48 //    void bbSet{Input|Output}NAME(const TYPE&)
49 //    const TYPE& bbGet{Input|Output}NAME() const 
50 //    Where :
51 //    * NAME is the name of the input/output
52 //      (the one provided in the attribute 'name' of the tag 'input')
53 //    * TYPE is the C++ type of the input/output
54 //      (the one provided in the attribute 'type' of the tag 'input')
55
56         if ( bbGetInputIn()!=NULL )
57         {
58                 int i,j;
59                 int ext[6];
60                 int dim[3];
61                 bbGetInputIn()->GetWholeExtent(ext);
62                 
63                 dim[0]=ext[1]-ext[0]+1;
64                 dim[1]=ext[3]-ext[2]+1;
65                 dim[2]=ext[5]-ext[4]+1;
66                 
67                 // XY plane
68                 for (i=0 ; i<dim[0] ; i++)
69                 {
70                         for (j=0 ; j<dim[1] ; j++)
71                         {
72                                 bbGetInputIn()->SetScalarComponentFromDouble (i, j, 0           , 0, 0.0);
73                                 bbGetInputIn()->SetScalarComponentFromDouble (i, j, dim[2]-1, 0, 0.0);
74                         }
75                 }
76                 
77                 // YZ plane
78                 for (i=0 ; i<dim[1] ; i++)
79                 {
80                         for (j=0 ; j<dim[2] ; j++)
81                         {
82                                 bbGetInputIn()->SetScalarComponentFromDouble (0                 , i, j, 0, 0.0);
83                                 bbGetInputIn()->SetScalarComponentFromDouble (dim[0]-1  , i, j, 0, 0.0);
84                         }
85                 }
86                 
87                 // YZ plane
88                 for (i=0 ; i<dim[0] ; i++)
89                 {
90                         for (j=0 ; j<dim[2] ; j++)
91                         {
92                                 bbGetInputIn()->SetScalarComponentFromDouble (i, 0                      , j, 0, 0.0);
93                                 bbGetInputIn()->SetScalarComponentFromDouble (i, dim[1]-1       , j, 0, 0.0);
94                         }
95                 }
96         
97                 
98         }
99     
100         
101         bbSetOutputOut( bbGetInputIn() );
102
103         
104         
105 }
106 //===== 
107 // 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)
108 //===== 
109 void CleanExternalPlane::bbUserSetDefaultValues()
110 {
111
112 //  SET HERE THE DEFAULT INPUT/OUTPUT VALUES OF YOUR BOX 
113 //    Here we initialize the input 'In' to 0
114    bbSetInputIn(0);
115   
116 }
117 //===== 
118 // 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)
119 //===== 
120 void CleanExternalPlane::bbUserInitializeProcessing()
121 {
122
123 //  THE INITIALIZATION METHOD BODY :
124 //    Here does nothing 
125 //    but this is where you should allocate the internal/output pointers 
126 //    if any 
127
128   
129 }
130 //===== 
131 // 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)
132 //===== 
133 void CleanExternalPlane::bbUserFinalizeProcessing()
134 {
135
136 //  THE FINALIZATION METHOD BODY :
137 //    Here does nothing 
138 //    but this is where you should desallocate the internal/output pointers 
139 //    if any
140   
141 }
142 }
143 // EO namespace bbvtk
144
145