]> Creatis software - bbtk.git/commitdiff
Test code
authoreduardo.davila@creatis.insa-lyon.fr <eduardo.davila@creatis.insa-lyon.fr>
Tue, 14 Jan 2025 16:59:58 +0000 (17:59 +0100)
committereduardo.davila@creatis.insa-lyon.fr <eduardo.davila@creatis.insa-lyon.fr>
Tue, 14 Jan 2025 16:59:58 +0000 (17:59 +0100)
kernel/src/bbtkBlackBox.cxx
kernel/src/bbtkComplexBlackBox.cxx
kernel/src/bbtkWxBlackBox.cxx

index 4b5b08f146645a4232753209436c63e14caacca3..cb686699c8f8f05eacfbe1b7518484f15a3cd2e8 100644 (file)
@@ -762,7 +762,7 @@ namespace bbtk
                         )
                        {
 
-//printf("EED BlackBox::bbRecursiveExecute bbProcess start %s \n", bbGetFullName().c_str() );
+printf("EED BlackBox::bbRecursiveExecute bbProcess start %s \n", bbGetFullName().c_str() );
                 
 //auto start = std::chrono::high_resolution_clock::now();
                 this->bbProcess();
@@ -770,7 +770,7 @@ namespace bbtk
 //auto duration   = std::chrono::duration_cast<std::chrono::microseconds>(stop - start);
 //printf("EED BlackBox::bbRecursiveExecute bbProcess time= %ld  %s \n", duration.count() , bbGetFullName().c_str() );
 
-//printf("EED BlackBox::bbRecursiveExecute bbProcess end %s \n", bbGetFullName().c_str() );
+printf("EED BlackBox::bbRecursiveExecute bbProcess end %s \n", bbGetFullName().c_str() );
 
                    } // Manual analysis
                  
index c07ba9f383b74ef805b56f208243c17ce8aadb51..516c7b800ee39c8b750d75fa14eb25d301720839 100644 (file)
@@ -285,19 +285,17 @@ namespace bbtk
         for (i=mExecutionList.begin(); 
             i!=mExecutionList.end();
             ++i) 
-         {
-           bbtkBlackBoxDebugMessage("process",3," -> Executing '"<<*i<<"'"<<std::endl);
-           mBlackBoxMap[*i]->bbExecute(force);
-         }
-      }
-    else 
-      {
-       std::map<std::string, BlackBox::Pointer>::iterator i;
-       for (i=mBlackBoxMap.begin(); i!=mBlackBoxMap.end(); ++i)
-         {
-           i->second->bbExecute(force);
-         }
-      } 
+        {
+            bbtkBlackBoxDebugMessage("process",3," -> Executing '"<<*i<<"'"<<std::endl);
+            mBlackBoxMap[*i]->bbExecute(force);
+        } // for i
+      } else {
+          std::map<std::string, BlackBox::Pointer>::iterator i;
+          for (i=mBlackBoxMap.begin(); i!=mBlackBoxMap.end(); ++i)
+          {
+              i->second->bbExecute(force);
+          } // for i
+    }
     bbtkBlackBoxDebugMessage("process",2,
                             "<** ComplexBlackBox::bbExecute()"
                             <<std::endl);
index 1d095b021b4300663943f2f2451edf494d17ee76..f499f7406c58dff6caaeffd5110bb86fb6c86cb2 100644 (file)
@@ -308,7 +308,7 @@ printf("EED WxFrame::~WxFrame\n");
     w->Raise();  // bring window to front
       
       printf("EED WxBlackBox::bbCreateFrameWindow --------------\n");
-      w->Enable(false);
+//      w->Enable(false);
       
     w->Show(true);
    }
@@ -340,8 +340,10 @@ printf("EED WxFrame::~WxFrame\n");
             printf("//EED --------------   WxBlackBox::bbShowWindow  1 ------------------------ \n");
             bbGetWindow()->Show();
             bbSetShown(true);
-//            bbmWindow->Enable(true);
+            
             printf("//EED --------------   WxBlackBox::bbShowWindow  2 ------------------------ \n");
+//            bbmWindow->Enable(true);
+            
         } // if Dialog
     } // if Window  shown
   }