//=====
void SetPosition::Process()
{
-auto start1 = std::chrono::high_resolution_clock::now();
+//auto start1 = std::chrono::high_resolution_clock::now();
// THE MAIN PROCESSING METHOD BODY
// Here we simply set the input 'In' value to the output 'Out'
// And print out the output value
} // if bbGetInputPosition
} // bbGetInputwxVtkBaseView
} // Active
-auto stop1 = std::chrono::high_resolution_clock::now();
-auto duration1 = std::chrono::duration_cast<std::chrono::microseconds>(stop1 - start1);
-printf("EED SetPosition::Process time= %ld \n", duration1.count() , this->bbGetFullName().c_str() );
+//auto stop1 = std::chrono::high_resolution_clock::now();
+//auto duration1 = std::chrono::duration_cast<std::chrono::microseconds>(stop1 - start1);
+//printf("EED SetPosition::Process time= %ld \n", duration1.count() , this->bbGetFullName().c_str() );
}
//=====