]> Creatis software - clitk.git/commitdiff
Remove debug verbose
authorDavid Sarrut <david.sarrut@gmail.com>
Fri, 3 Feb 2012 06:57:12 +0000 (07:57 +0100)
committerDavid Sarrut <david.sarrut@creatis.insa-lyon.fr>
Tue, 4 Jun 2013 08:15:21 +0000 (10:15 +0200)
vv/vvMeshReader.cxx

index d740ea7921f35e76338d66f574c7777932ba7e2c..d03b0ac29c69013051926ae048ddebaa51deb1ca 100644 (file)
@@ -61,8 +61,6 @@ vtk_mode(false)
 //------------------------------------------------------------------------------
 void vvMeshReader::Update()
 {
-  DD("vvMeshReader::Update");
-
   //Show a progress bar only when opening a DC-struct (ie. multiple contours)
   vvProgressDialog progress("Opening " + filename,(!vtk_mode) && (selected_contours.size()>1));
   this->start();
@@ -107,24 +105,17 @@ std::vector<std::pair<int,std::string> > vvMeshReader::GetROINames()
 {
   assert(filename!="");
   std::vector<std::pair<int, std::string> > roi_names;
-  DD(GDCM_MAJOR_VERSION);
-  DD(CLITK_USE_SYSTEM_GDCM);
 
 #if CLITK_USE_SYSTEM_GDCM == 1
+
   // Read RT-struct data
-  DD("before read");
   vtkSmartPointer<vtkGDCMPolyDataReader> areader = vtkGDCMPolyDataReader::New();
   areader->SetFileName(filename.c_str());
   areader->Update();
-  DD("after read");
 
   // get info on roi names
   vtkRTStructSetProperties * p = areader->GetRTStructSetProperties();
-  DD(p->GetNumberOfStructureSetROIs());
-  DD(p->GetStructureSetROIName(0));
-  DD(p->GetStructureSetROINumber(0));  
   int n = p->GetNumberOfStructureSetROIs();
-  DD(n);
   
   for(unsigned int i=0; i<n; i++) {
     std::string name = p->GetStructureSetROIName(i);
@@ -223,7 +214,6 @@ std::vector<std::pair<int,std::string> > vvMeshReader::GetROINames()
 #endif
 
   return roi_names;
-
 }
 //------------------------------------------------------------------------------