]> Creatis software - creaVtk.git/commitdiff
clean code
authorEduardo DAVILA <davila@creatis.insa-lyon.fr>
Fri, 30 Dec 2022 12:21:18 +0000 (13:21 +0100)
committerEduardo DAVILA <davila@creatis.insa-lyon.fr>
Fri, 30 Dec 2022 12:21:18 +0000 (13:21 +0100)
bbtk_creaVtk_PKG/src/bbcreaVtkImageThresholdConnectivity.cxx
bbtk_creaVtk_PKG/src/bbcreaVtkImageThresholdConnectivity.h

index 25b85a633fb7aafeb8f6aa8c2dc494428a2b8492..2e6d5199df14c34abd7588a9a22510319be6c645 100644 (file)
@@ -133,69 +133,6 @@ void ImageThresholdConnectivity::bbUserFinalizeProcessing()
 //    if any
 }
 
-
-//=========================================================================
-void ImageThresholdConnectivity::bbSetStatusAndPropagate(BlackBoxInputConnector* c, IOStatus s)
-{
-  bbtkBlackBoxDebugMessage("change",5,
-               "=> BlackBox::bbSetStatusAndPropagate(input,"
-               <<GetIOStatusString(s)<<")"
-               <<std::endl);
-
-  if (s==UPTODATE) bbtkError("bbSetStatusAndPropagate with status UPTODATE!");
-  c->SetStatus(s);
-
-  // Flash reaction
-  /*
-  if (bbGetBoxProcessModeValue() == Flash)
-    {
-  this->bbExecute();
-    }
-  */
-
-
-  OutputConnectorMapType::const_iterator o;
-  for ( o = bbGetOutputConnectorMap().begin();
-    o != bbGetOutputConnectorMap().end(); ++o )
-    {
-
-
-  if (o->first=="BoxChange")
-  {
-      o->second->SetStatus(UPTODATE);
-  }
-
-
-
-//EED 24/08/2015
-// EED CASPITAS 2
-  if (o->second->GetStatus()==UPTODATE)
-//    if ((o->second->GetStatus()==UPTODATE) || (o->second->GetStatus()==OUTOFDATE))
-//    if ((o->second->GetStatus()==UPTODATE) || (o->second->GetStatus()==MODIFIED))
-    {
-      o->second->SetStatus(OUTOFDATE);
-      o->second->SignalChange(GetThisPointer<BlackBox>(),o->first);
-    } // if
-  } // for
-  
-
-  if (  ( bbBoxProcessModeIsReactive()
-     || (c==bbGetInputConnectorMap().find("BoxExecute")->second))
-     && (bbCanReact() ) )
-    {
-  bbtkBlackBoxDebugMessage("change",2,
-           "-> Execution triggered by Reactive mode or BoxExecute input change"<<std::endl);
-      bbGlobalAddToExecutionList( GetThisPointer<BlackBox>() );
-    } // if
-  bbtkBlackBoxDebugMessage("change",5,
-               "<= BlackBox::bbSetStatusAndPropagate(input)"
-               <<std::endl);
-}
-//=========================================================================
-
-
-
-
 }// EO namespace bbcreaVtk
 
 
index fc45bf2f0dc0f64dbda558ce1de4fd112716a9ed..7ed7beedcb1857aabb49a3a6fb99fdf8ca16b40f 100644 (file)
@@ -34,11 +34,6 @@ class bbcreaVtk_EXPORT ImageThresholdConnectivity
   BBTK_PROCESS(Process);
   void Process();
     
-    
-    virutal void bbSetStatusAndPropagate(BlackBoxInputConnector* c, IOStatus s);
-
-
-    
 //===== 
 // 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)
 //=====