]> Creatis software - bbtk.git/blobdiff - packages/std/src/bbstdGetVectorElement.h
re indent
[bbtk.git] / packages / std / src / bbstdGetVectorElement.h
index 438caea889e0b99ae21f732cd6e6fb96e75ae18c..2eacfc26797a485b86e95db328c752295558bf72 100644 (file)
@@ -2,8 +2,8 @@
   Program:   bbtk
   Module:    $RCSfile: bbstdGetVectorElement.h,v $
   Language:  C++
-  Date:      $Date: 2009/05/14 14:43:38 $
-  Version:   $Revision: 1.5 $
+  Date:      $Date: 2011/07/22 17:42:51 $
+  Version:   $Revision: 1.8 $
 =========================================================================*/
 
 /* ---------------------------------------------------------------------
@@ -41,13 +41,14 @@ namespace bbstd
   // BlackBox declaration
   template <class T>
   class bbstd_EXPORT GetVectorElement : public bbtk::AtomicBlackBox
-  {  
+  {
     BBTK_TEMPLATE_BLACK_BOX_INTERFACE(GetVectorElement,bbtk::AtomicBlackBox,T);
     BBTK_DECLARE_INPUT(In,std::vector<T>);
-    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();
   };
   //=================================================================
 
@@ -55,12 +56,13 @@ namespace bbstd
   // BlackBox description
   BBTK_BEGIN_DESCRIBE_TEMPLATE_BLACK_BOX(GetVectorElement,bbtk::AtomicBlackBox);
   BBTK_NAME("Get"+bbtk::HumanTypeName<std::vector<T> >()+"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<std::vector<T> >());
   typedef std::vector<T> 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,12 +71,12 @@ namespace bbstd
   template <class T>
   void GetVectorElement<T>::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() );
+         }
   }
   //=================================================================