X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=packages%2Fvtk%2Fsrc%2FbbvtkBinaryOperations.cxx;h=0e2a523f2b5b4d4193843cb410395b7f8193b10f;hb=5ab6a1678119cdff10db5524a400a0ecc3c53580;hp=106ceb27eb8c33530d01012d2f4e9c746fa2c363;hpb=e269992d2d446784afc40073782311deaa25008f;p=bbtk.git diff --git a/packages/vtk/src/bbvtkBinaryOperations.cxx b/packages/vtk/src/bbvtkBinaryOperations.cxx index 106ceb2..0e2a523 100644 --- a/packages/vtk/src/bbvtkBinaryOperations.cxx +++ b/packages/vtk/src/bbvtkBinaryOperations.cxx @@ -35,7 +35,6 @@ BBTK_ADD_BLACK_BOX_TO_PACKAGE(vtk,BinaryOperations) BBTK_BLACK_BOX_IMPLEMENTATION(BinaryOperations,bbtk::AtomicBlackBox); void BinaryOperations::Process() { - // THE MAIN PROCESSING METHOD BODY // Here we simply set the input 'In' value to the output 'Out' // And print out the output value @@ -50,7 +49,7 @@ void BinaryOperations::Process() if (bbGetInputIn1() == NULL) { - std::cout << "Set In1 at least" << std::endl; + std::cout << "EED BinaryOperations::Process Set In1 at least" << std::endl; return; } @@ -73,12 +72,9 @@ void BinaryOperations::Process() #endif } else { - std::cout << "Set In2" << std::endl; + std::cout << "EED BinaryOperations::Process Set In2" << std::endl; return; } - - - switch (bbGetInputOperation()) { case 0: @@ -105,14 +101,11 @@ void BinaryOperations::Process() return; break; } - ope->Modified(); ope->Update(); vtkImageData* salida = ope->GetOutput(); - bbSetOutputOut(salida); - bbSignalOutputModification(); - +// bbSignalOutputModification(); }