From: eduardo.davila@creatis.insa-lyon.fr Date: Sat, 4 Jan 2025 00:58:56 +0000 (+0100) Subject: Clean code X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=commitdiff_plain;h=91f0be9c7ae6a9aad6144332de742edb2875e1bd;p=creaMaracasVisu.git Clean code --- diff --git a/bbtk/src/bbcreaMaracasVisuSetPosition.cxx b/bbtk/src/bbcreaMaracasVisuSetPosition.cxx index 2a37735..7d543f8 100644 --- a/bbtk/src/bbcreaMaracasVisuSetPosition.cxx +++ b/bbtk/src/bbcreaMaracasVisuSetPosition.cxx @@ -30,7 +30,7 @@ void SetPosition::Process() // (the one provided in the attribute 'type' of the tag 'input') if (bbGetInputActive()==true) { -auto start1 = std::chrono::high_resolution_clock::now(); +//auto start1 = std::chrono::high_resolution_clock::now(); if (bbGetInputwxVtkBaseView()!=NULL) { vtkMPRBaseData* vtkmprbasedata = (vtkMPRBaseData*) (bbGetInputwxVtkBaseView()->GetVtkBaseData()); @@ -58,9 +58,9 @@ auto start1 = std::chrono::high_resolution_clock::now(); vtkmprbasedata->SetFixAxis2D( tmpFixAxis ); } // if bbGetInputPosition } // bbGetInputwxVtkBaseView -auto stop1 = std::chrono::high_resolution_clock::now(); -auto duration1 = std::chrono::duration_cast(stop1 - start1); -printf("EED SetPosition::Process time= %ld %s \n", duration1.count() , this->bbGetFullName().c_str() ); +//auto stop1 = std::chrono::high_resolution_clock::now(); +//auto duration1 = std::chrono::duration_cast(stop1 - start1); +//printf("EED SetPosition::Process time= %ld %s \n", duration1.count() , this->bbGetFullName().c_str() ); } // Active }