//===== 
 // 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)
 //===== 
+
+#include <chrono>
+
 #include "bbcreaMaracasVisuSetPosition.h"
 #include "bbcreaMaracasVisuPackage.h"
-
 #include <wxMPRBaseData.h>
 
 namespace bbcreaMaracasVisu
 //===== 
 void SetPosition::Process()
 {
+auto start = std::chrono::high_resolution_clock::now();
 
 // THE MAIN PROCESSING METHOD BODY
 //   Here we simply set the input 'In' value to the output 'Out'
                        } // if bbGetInputPosition
                } // bbGetInputwxVtkBaseView    
        } // Active
+    
+auto stop       = std::chrono::high_resolution_clock::now();
+auto duration   = std::chrono::duration_cast<std::chrono::microseconds>(stop - start);
+printf("EED SetPosition::Process time= %ld  %s \n", duration.count() , bbGetFullName().c_str() );
+
 }
 
 //=====