X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=packages%2Fstd%2Fsrc%2FbbstdGetVectorElement.h;h=2eacfc26797a485b86e95db328c752295558bf72;hb=c24bcd6f879ecc6ff437ac25d288a6f682c47206;hp=d49110e97408d25befb1a4a5b7cd5970578aba43;hpb=c429a5e1229f3dbc56e2d0100980c7e4a3506d89;p=bbtk.git diff --git a/packages/std/src/bbstdGetVectorElement.h b/packages/std/src/bbstdGetVectorElement.h index d49110e..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: 2008/12/12 08:55:21 $ - Version: $Revision: 1.4 $ + Date: $Date: 2011/07/22 17:42:51 $ + Version: $Revision: 1.8 $ =========================================================================*/ /* --------------------------------------------------------------------- @@ -41,14 +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(); - virtual void bbUserConstructor(); + void DoIt(); }; //================================================================= @@ -56,12 +56,13 @@ namespace bbstd // BlackBox description BBTK_BEGIN_DESCRIBE_TEMPLATE_BLACK_BOX(GetVectorElement,bbtk::AtomicBlackBox); BBTK_NAME("Get"+bbtk::HumanTypeName >()+"Element"); - BBTK_AUTHOR("jpr@creatis.insa-lyon.fr"); + BBTK_AUTHOR("info-dev@creatis.insa-lyon.fr"); // BBTK_DEFAULT_ADAPTOR(); BBTK_DESCRIPTION("Gets the i-th element from the input vector ("+bbtk::TypeName >()); 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); //================================================================= @@ -70,18 +71,32 @@ namespace bbstd template void GetVectorElement::DoIt() { - // std::string out; - // std::ostringstream oss; - int i = bbGetInputI(); - //oss << bbGetInputIn()[i]; - //bbSetOutputOut(out.str()); - bbSetOutputOut(bbGetInputIn()[i]); + if (( bbGetInputI() < bbGetInputIn().size() ) && ( bbGetInputI() >= 0 ) ) + { + bbSetOutputOut( bbGetInputIn()[bbGetInputI()] ); + } else { + bbSetOutputOut( bbGetInputErrorValue() ); + } } //================================================================= //================================================================= template - void GetVectorElement::bbUserConstructor() + void GetVectorElement::bbUserSetDefaultValues() + { + + } + //================================================================= + //================================================================= + template + void GetVectorElement::bbUserInitializeProcessing() + { + + } + //================================================================= + //================================================================= + template + void GetVectorElement::bbUserFinalizeProcessing() { }