//===== // 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) //===== #ifndef __bbstdSaveLstPoints_h_INCLUDED__ #define __bbstdSaveLstPoints_h_INCLUDED__ #include "bbstd_EXPORT.h" #include "bbtkAtomicBlackBox.h" #include "iostream" namespace bbstd { class bbstd_EXPORT SaveLstPoints : public bbtk::AtomicBlackBox { BBTK_BLACK_BOX_INTERFACE(SaveLstPoints,bbtk::AtomicBlackBox); //===== // 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) //===== BBTK_DECLARE_INPUT(FileNameBase,std::string); BBTK_DECLARE_INPUT(LstX,std::vector); BBTK_DECLARE_INPUT(LstY,std::vector); BBTK_DECLARE_INPUT(LstZ,std::vector); BBTK_DECLARE_INPUT(LstIndexs,std::vector); BBTK_DECLARE_INPUT(Params,std::vector); BBTK_DECLARE_INPUT(Type,int); // BBTK_DECLARE_OUTPUT(Out,double); BBTK_PROCESS(Process); void Process(); //===== // 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) //===== }; BBTK_BEGIN_DESCRIBE_BLACK_BOX(SaveLstPoints,bbtk::AtomicBlackBox); BBTK_NAME("SaveLstPoints"); BBTK_AUTHOR("InfoDev"); BBTK_DESCRIPTION("No Description."); BBTK_CATEGORY("empty"); BBTK_INPUT(SaveLstPoints,FileNameBase,"automatic add .pnt extention",std::string,""); BBTK_INPUT(SaveLstPoints,LstX,"List of points in X",std::vector,""); BBTK_INPUT(SaveLstPoints,LstY,"List of points in Y",std::vector,""); BBTK_INPUT(SaveLstPoints,LstZ,"List of points in Z",std::vector,""); BBTK_INPUT(SaveLstPoints,LstIndexs,"List of indexs",std::vector,""); BBTK_INPUT(SaveLstPoints,Params,"(default 0) 0:Param give the i-Lst to be exported",std::vector,""); BBTK_INPUT(SaveLstPoints,Type,"List of params",int,""); //BBTK_OUTPUT(SaveLstPoints,Out,"First output",double,""); BBTK_END_DESCRIBE_BLACK_BOX(SaveLstPoints); //===== // 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) //===== } // EO namespace bbstd #endif // __bbstdSaveLstPoints_h_INCLUDED__