]> SALOME platform Git repositories - modules/visu.git/commitdiff
Salome HOME
To disable messages
authorapo <apo@opencascade.com>
Thu, 30 Nov 2006 06:17:19 +0000 (06:17 +0000)
committerapo <apo@opencascade.com>
Thu, 30 Nov 2006 06:17:19 +0000 (06:17 +0000)
src/VISU_I/VISU_Prs3d_i.cc

index 62b64bb42f15298e447f52ec3868d354e8be83a8..621b18dec7749e7decb77db9b476bb2f5221fb8e 100644 (file)
@@ -605,11 +605,11 @@ VISU::Prs3d_i
   static int INCMEMORY = 4;
   vtkDataSet* aDataSet = GetPipeLine()->GetInput();
   CORBA::Float aSize = aDataSet->GetActualMemorySize() * INCMEMORY * 1024.0;
-  cout<<"Prs3d_i::GetMemorySize - "<<this<<"; aDataSet = "<<aSize / (1024.0 * 1024.0)<<endl;
+  //cout<<"Prs3d_i::GetMemorySize - "<<this<<"; aDataSet = "<<aSize / (1024.0 * 1024.0)<<endl;
 
   // To calculate memory used by VISU PipeLine
   aSize += GetPipeLine()->GetMemorySize();
-  cout<<"Prs3d_i::GetMemorySize - "<<this<<"; GetPipeLine = "<<aSize / (1024.0 * 1024.0)<<endl;
+  //cout<<"Prs3d_i::GetMemorySize - "<<this<<"; GetPipeLine = "<<aSize / (1024.0 * 1024.0)<<endl;
 
   // To calculate memory used by VISU Actos
   int anEnd = myActorCollection->GetNumberOfItems();
@@ -617,10 +617,10 @@ VISU::Prs3d_i
     if(vtkObject* anObject = myActorCollection->GetItemAsObject(anId))
       if(VISU_Actor* anActor = dynamic_cast<VISU_Actor*>(anObject)){
        aSize += anActor->GetMemorySize();
-       cout<<"Prs3d_i::GetMemorySize - "<<this<<"; anActor = "<<aSize / (1024.0 * 1024.0)<<endl;
+       //cout<<"Prs3d_i::GetMemorySize - "<<this<<"; anActor = "<<aSize / (1024.0 * 1024.0)<<endl;
       }
 
-  cout<<endl;
+  //cout<<endl;
   // Convert to mega bytes
   return aSize / (1024.0 * 1024.0);
 }