X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;ds=sidebyside;f=packages%2Fstd%2Fsrc%2FbbstdGetVectorElement.h;h=2eacfc26797a485b86e95db328c752295558bf72;hb=731d9ee262e286a24e3ea2776d8e914950840a2c;hp=53182c517522a9aa2117c9bd18149b8f9c7f4e83;hpb=73922461adf24cf7d6539db9f752fc4e44db462d;p=bbtk.git diff --git a/packages/std/src/bbstdGetVectorElement.h b/packages/std/src/bbstdGetVectorElement.h index 53182c5..2eacfc2 100644 --- a/packages/std/src/bbstdGetVectorElement.h +++ b/packages/std/src/bbstdGetVectorElement.h @@ -2,8 +2,8 @@ Program: bbtk Module: $RCSfile: bbstdGetVectorElement.h,v $ Language: C++ - Date: $Date: 2009/07/23 12:27:36 $ - Version: $Revision: 1.6 $ + Date: $Date: 2011/07/22 17:42:51 $ + Version: $Revision: 1.8 $ =========================================================================*/ /* --------------------------------------------------------------------- @@ -41,13 +41,14 @@ namespace bbstd // BlackBox declaration template class bbstd_EXPORT GetVectorElement : public bbtk::AtomicBlackBox - { + { BBTK_TEMPLATE_BLACK_BOX_INTERFACE(GetVectorElement,bbtk::AtomicBlackBox,T); BBTK_DECLARE_INPUT(In,std::vector); - BBTK_DECLARE_INPUT(I,int); + BBTK_DECLARE_INPUT(I,int); + BBTK_DECLARE_INPUT(ErrorValue,T); BBTK_DECLARE_OUTPUT(Out,T); BBTK_PROCESS(DoIt); - void DoIt(); + void DoIt(); }; //================================================================= @@ -61,6 +62,7 @@ namespace bbstd typedef std::vector Tvector; BBTK_TEMPLATE_INPUT(GetVectorElement, In,"Input",Tvector); BBTK_TEMPLATE_INPUT(GetVectorElement, I, "Input",int); + BBTK_TEMPLATE_INPUT(GetVectorElement, ErrorValue, "ErrorValue",T); BBTK_TEMPLATE_OUTPUT(GetVectorElement,Out,"Output",T); BBTK_END_DESCRIBE_TEMPLATE_BLACK_BOX(GetVectorElement); //================================================================= @@ -69,8 +71,12 @@ namespace bbstd template void GetVectorElement::DoIt() { - // unsigned int i = bbGetInputI(); - bbSetOutputOut(bbGetInputIn()[bbGetInputI()]); + if (( bbGetInputI() < bbGetInputIn().size() ) && ( bbGetInputI() >= 0 ) ) + { + bbSetOutputOut( bbGetInputIn()[bbGetInputI()] ); + } else { + bbSetOutputOut( bbGetInputErrorValue() ); + } } //=================================================================