]> Creatis software - bbtk.git/blobdiff - packages/std/src/bbstdReadColumnsInt.cxx
#2975 BBTK Bug New Normal - Clean comments
[bbtk.git] / packages / std / src / bbstdReadColumnsInt.cxx
index f33d73534b8736a3ee56bf977e6dc83494f4c9a2..e860d23383c3a667c8d75637646d3c2db8431e43 100644 (file)
@@ -40,16 +40,12 @@ BBTK_BLACK_BOX_IMPLEMENTATION(ReadColumnsInt,bbtk::AtomicBlackBox);
 //===== 
 void ReadColumnsInt::Process()
 {
-       printf("EED ReadColumnsDouble::Process start \n");
-       
-       std::vector< std::vector<int> * > tlst;
-       
+       std::vector< std::vector<int> * > tlst; 
        int i;
        for( i=0 ;  i<bbGetInputDimension() ; i++)
        {
                tlst.push_back( new std::vector<int> );
        }       
-       
        int numberOfLines = 0;
        char tmpValue[1000];
        std::vector<int> *vecData;
@@ -73,7 +69,6 @@ void ReadColumnsInt::Process()
        } else {   // else ff1
                printf("ReadColumnsDouble::Process  ...Error... reading file FileName <%s>\n", bbGetInputFileName().c_str() );
        } //ff1 
-       
        i=1; if (i<=bbGetInputDimension()) { bbSetOutputlstData1( *(tlst[i-1]) ); }
        i=2; if (i<=bbGetInputDimension()) { bbSetOutputlstData2( *(tlst[i-1]) ); }
        i=3; if (i<=bbGetInputDimension()) { bbSetOutputlstData3( *(tlst[i-1]) ); }
@@ -82,10 +77,7 @@ void ReadColumnsInt::Process()
        i=6; if (i<=bbGetInputDimension()) { bbSetOutputlstData6( *(tlst[i-1]) ); }
        i=7; if (i<=bbGetInputDimension()) { bbSetOutputlstData7( *(tlst[i-1]) ); }
        i=8; if (i<=bbGetInputDimension()) { bbSetOutputlstData8( *(tlst[i-1]) ); }
-       i=9; if (i<=bbGetInputDimension()) { bbSetOutputlstData9( *(tlst[i-1]) ); }
-       
-       printf("EED ReadColumnsDouble::Process end \n");
-       
+       i=9; if (i<=bbGetInputDimension()) { bbSetOutputlstData9( *(tlst[i-1]) ); }     
 }
 //===== 
 // 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)