X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=packages%2Fvtk%2Fsrc%2FbbvtkPiecewiseFunction.cxx;h=6d77609279c0ae6bd586e0de8dcd6540ad75ddc9;hb=08ce916eba56a6111014712fc931a1cce7e8f877;hp=c62709b18c867c45d706d4ae99bac63c9e6447ce;hpb=17ac9460f5ea5600d1065fbe3ee4ad826d7bb4fc;p=bbtk.git diff --git a/packages/vtk/src/bbvtkPiecewiseFunction.cxx b/packages/vtk/src/bbvtkPiecewiseFunction.cxx index c62709b..6d77609 100644 --- a/packages/vtk/src/bbvtkPiecewiseFunction.cxx +++ b/packages/vtk/src/bbvtkPiecewiseFunction.cxx @@ -1,33 +1,38 @@ -/*========================================================================= +/* + # --------------------------------------------------------------------- + # + # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image + # pour la SantÈ) + # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton + # Previous Authors : Laurent Guigues, Jean-Pierre Roux + # CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil + # + # This software is governed by the CeCILL-B license under French law and + # abiding by the rules of distribution of free software. You can use, + # modify and/ or redistribute the software under the terms of the CeCILL-B + # license as circulated by CEA, CNRS and INRIA at the following URL + # http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html + # or in the file LICENSE.txt. + # + # As a counterpart to the access to the source code and rights to copy, + # modify and redistribute granted by the license, users are provided only + # with a limited warranty and the software's author, the holder of the + # economic rights, and the successive licensors have only limited + # liability. + # + # The fact that you are presently reading this means that you have had + # knowledge of the CeCILL-B license and that you accept its terms. + # ------------------------------------------------------------------------ */ + + +/*========================================================================= Program: bbtk Module: $RCSfile: bbvtkPiecewiseFunction.cxx,v $ Language: C++ - Date: $Date: 2009/05/15 14:58:01 $ - Version: $Revision: 1.2 $ + Date: $Date: 2012/11/16 08:51:58 $ + Version: $Revision: 1.3 $ =========================================================================*/ -/* --------------------------------------------------------------------- - -* Copyright (c) CREATIS-LRMN (Centre de Recherche en Imagerie Medicale) -* Authors : Eduardo Davila, Laurent Guigues, Jean-Pierre Roux -* -* This software is governed by the CeCILL-B license under French law and -* abiding by the rules of distribution of free software. You can use, -* modify and/ or redistribute the software under the terms of the CeCILL-B -* license as circulated by CEA, CNRS and INRIA at the following URL -* http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html -* or in the file LICENSE.txt. -* -* As a counterpart to the access to the source code and rights to copy, -* modify and redistribute granted by the license, users are provided only -* with a limited warranty and the software's author, the holder of the -* economic rights, and the successive licensors have only limited -* liability. -* -* The fact that you are presently reading this means that you have had -* knowledge of the CeCILL-B license and that you accept its terms. -* ------------------------------------------------------------------------ */ - /** * \file * \brief @@ -87,11 +92,9 @@ namespace bbvtk ( bbGetInputStatus("Y") != bbtk::UPTODATE ) ) { if ( bbGetInputX().size() != bbGetInputY().size() ) - bbtkError(bbGetFullName() - <<" : input vectors X and Y do not have the same size"); + bbtkError(bbGetFullName() <<" : input vectors X and Y do not have the same size"); if ( bbGetInputX().size() < 2 ) - bbtkError(bbGetFullName() - <<" : input vectors X and Y have a size < 2"); + bbtkError(bbGetFullName() <<" : input vectors X and Y have a size < 2"); bbGetOutputOut()->RemoveAllPoints (); // std::cout << bbGetInputX().size()<< ","<< bbGetInputY().size()<< std::endl; std::vector::const_iterator x,y; @@ -103,10 +106,11 @@ namespace bbvtk { // std::cout << *x << " -> " << *y << std::endl; bbGetOutputOut()->AddPoint(*x,*y); - } - } + } // for x ,y + } // if InputX } + }//namespace bbtk #endif // _USE_VTK_