Salome HOME
Fix for Bug IPAL8945
[modules/visu.git] / src / CONVERTOR / VISU_ConvertorUtils.cxx
1 //  VISU OBJECT : interactive object for VISU entities implementation
2 //
3 //  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
5 // 
6 //  This library is free software; you can redistribute it and/or 
7 //  modify it under the terms of the GNU Lesser General Public 
8 //  License as published by the Free Software Foundation; either 
9 //  version 2.1 of the License. 
10 // 
11 //  This library is distributed in the hope that it will be useful, 
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of 
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
14 //  Lesser General Public License for more details. 
15 // 
16 //  You should have received a copy of the GNU Lesser General Public 
17 //  License along with this library; if not, write to the Free Software 
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
19 // 
20 //  See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //  File   : VISU_Convertor_impl.cxx
24 //  Author : Alexey PETROV
25 //  Module : VISU
26
27 #include "VISU_ConvertorUtils.hxx"
28
29 #include <vtkUnstructuredGridWriter.h>
30 #include <vtkTimerLog.h>
31
32 #ifdef _DEBUG_
33 static int MYDEBUG = 0;
34 #else
35 static int MYDEBUG = 0;
36 #endif
37
38 namespace VISU
39 {
40
41   void 
42   WriteToFile(vtkUnstructuredGrid* theDataSet, const std::string& theFileName)
43   {
44     vtkUnstructuredGridWriter* aWriter = vtkUnstructuredGridWriter::New();
45     //aWriter->SetFileType(VTK_BINARY);
46     aWriter->SetFileName(theFileName.c_str());
47     aWriter->SetInput(theDataSet);
48     aWriter->Write();
49     aWriter->Delete();
50   }
51
52
53   TTimerLog
54   ::TTimerLog(int theIsDebug,
55               const std::string& theName):
56     myIsDebug(MYDEBUG + theIsDebug),
57     myTimerLog(vtkTimerLog::New()),
58     myPrefixPrinter(myIsDebug == 1),
59     myName(theName)
60   {
61     myCPUTime = myTimerLog->GetCPUTime();
62     BEGMSG(myIsDebug > 1,"{\n");
63   }
64
65   TTimerLog
66   ::~TTimerLog()
67   {
68     myCPUTime = myTimerLog->GetCPUTime() - myCPUTime;
69
70     if(myIsDebug > 1){
71       BEGMSG(myIsDebug,"} = "<<myCPUTime<<" secs ("<<myName<<")\n");
72     }else{
73       BEGMSG(myIsDebug,myName<<" takes "<<myCPUTime<<" secs\n");
74     }
75     
76     myTimerLog->Delete();
77     myTimerLog = NULL;
78   }
79
80 }