BBTK_BLACK_BOX_IMPLEMENTATION(SliceImage,bbtk::AtomicBlackBox);
 void SliceImage::Process()
 {
-       printf("EED 0 SliceImage::Process \n");
+       //printf("EED 0 SliceImage::Process \n");
        vtkImageData *imagedata=NULL;
 
-       std::cout<<"MSJ: test SliceImage::Process()"<<this<<std::endl;
+       //std::cout<<"MSJ: test SliceImage::Process()"<<this<<std::endl;
        if ( bbGetInputIn()!=NULL ){
 
          imageReslice->SetInput( bbGetInputIn() );
           imagedata = imageReslice->GetOutput();
          imagedata->Update();
          imagedata->UpdateInformation();       
-         printf("EED 1 SliceImage::Process %p\n", imagedata);
+         //printf("EED 1 SliceImage::Process %p\n", imagedata);
   }
   bbSetOutputOut( imagedata );
 }