[CIG-SEISMO] Post-Processing mesh2vtu can not make

=?GB2312?B?uvqGtOW5?= huzheqian at gmail.com
Thu May 23 06:38:08 PDT 2013


Dear Peter:

    Thank you for your previous mail, with your help I can use the mesh2vtu.

    Today mesh2vtu make error. I did not make changes to the system, but  I
do not know why mesh2vtu can not be used.
    Attached is my error message.

   Would you help me find out answer?

   Look forward to your reply.


   --------------
   steven


2012/12/6 Peter Danecek <Peter.Danecek at bo.ingv.it>

>
> Hi,
>
> for the scope of compiling and linking mesh2vtu against VTK, you need only
> a relative small part of the whole VTK. For example the Python wrapper or
> the whole Rendering and Visualization staff is not needed. Anyway, I guess
> the easiest way to install VTK is through the package manager of your
> system. I am not very familiar with Redhat, but you should find tutorials
> on the web.
>
> When you are done with the VTK installations, check where it was put. My
> first guess would be something  like /usr/local/... (<prefix>)
>
> There you should find something the following ...
> NOTE: The version can be different, mesh2vtu will work also with other 5.x
> versions.
>
> <prefix>/include/vtk-5.10
>  .. this is the path to put with -I flag (include) during compilation
>  Here you should find quite some header files ( *.h), on my installation
> there are nearly 2000
> <prefix>/lib/vtk-5.10
>  .. this is the path to put with -L flag (library) during linking
>  Here you file the libraries (the extension depends on the platform, *.a
> or *.so are common)
>
> I send you my somewhat modified version of mesh2vtu. It should be
> sufficient to change the VTK_PREFIX & VER_VTK variables in the Makefile and
> type make. Note, that this version requires an extra parameter (to name the
> scalar variable) so do not expect the Perl wrapper to work as is. I will
> submit an extended version to the repository, when I find time to do some
> cleanup.
>
>
>
>
>
> --- snip ---
> [urquell:Utils/VTK-util/**mesh2vtu.petr.2012-12-06] petr% make
> g++ -c -O2 -Wno-deprecated -I/opt/local/include/vtk-5.10 -o mesh2vtu.o
> mesh2vtu.cxx
> g++  mesh2vtu.o -o mesh2vtu -L/opt/local/lib/vtk-5.10  -lvtkCommon -lvtkIO
>  -lvtkFiltering  -lvtkRendering -lvtkGraphics
> rm mesh2vtu.o
> [urquell:Utils/VTK-util/**mesh2vtu.petr.2012-12-06] petr% ls -la
> total 40
> drwxr-xr-x   5 petr  petr    170  6 Dec 10:37 .
> drwxr-xr-x  22 petr  petr    748  6 Dec 10:35 ..
> -rw-r--r--   1 petr  petr   1191  6 Dec 10:33 Makefile
> -rwxr-xr-x   1 petr  petr  18136  6 Dec 10:37 mesh2vtu
> -rw-r--r--   1 petr  petr  13321 29 Oct 16:30 mesh2vtu.cxx
> --- snap ---
>
> Good luck!
> ~petr
>
>
>
>
>
> On 6 Dec 2012, at 03:16, 赵芳 wrote:
>
>
>>
>> Hello peter:
>>
>>  I don't known how to fix it. I need your help. Thank you very much!
>>
>>  There are some publise with SPECFEM3D about Post-Processing.
>>  There is a error about mesh2vtu.pl as below:
>> [root at Redhat mesh2vtu]# ./mesh2vtu.pl -i velocity_Z_it000400.mesh -o
>> velocity_Z_it000400.vtu
>> env: /SPECFEM3D/utils/**Visualization/Paraview/**mesh2vtu: Permission
>> denied
>>
>>  For that, VTK has been installed as below:
>> [root at Redhat vtk]# ls -lF
>> total 101156
>> drwxr-xr-x 25 root root     4096 Dec  1 16:04 bin/
>> drwxr-xr-x 23  503  503     4096 Aug 24  2011 VTK/
>> -rw-r--r--  1 root root 23745803 Sep  7 20:32 vtk-5.8.0.tar.gz
>> drwxr-xr-x  4  503  503     4096 Aug 24  2011 VTKData/
>> -rw-r--r--  1 root root 79709318 Sep  7 21:23 vtkdata-5.8.0.tar.gz
>>
>>  I installed VTK in /opt/vtk/bin.
>>  When 'ccmake' I set BUILD_SHARED_LIBS to ON, and PYTHON_WRAPPING to ON.
>> After 'make' and 'make install', I edit .bashrc add path as blow:
>> export LD_LIBRARY_PATH=$LD_LIBRATY_**PATH:/opt/vtk/bin/bin/
>> export DYLD_FALLBACK_LIBRARY_PATH=/**opt/vtk/bin/bin/
>> export PYTHONPATH=/opt/vtk/bin/bin/
>> export PYTHONPATH=$PYTHONPATH:/opt/**vtk/VTK/Wrapping/Python/
>>
>>  But I can't run setup.pl.in which is in /opt/vtk/VTK/Wrapping/Python
>> [root at Redhat Python]# python setup.py.in install
>>  File "setup.py.in", line 36
>>    vtk_use_rendering = @VTK_PYTHON_USE_RENDERING@
>>                        ^
>> SyntaxError: invalid syntax
>>
>>  I tested python scripts in /opt/vtk/VTK/Examples/GUI/**Python.
>> [root at Redhat Python]# ./BoxWidget.py
>>  Useing Python script to run the examply of the VTK is ok. I can see the
>> pop-up dialog box.
>> [root at Redhat Python]# python
>> Python 2.7.3 (default, Dec  1 2012, 15:04:54)
>> [GCC 4.1.2 20080704 (Red Hat 4.1.2-50)] on linux2
>> Type "help", "copyright", "credits" or "license" for more information.
>> >>> import vtk
>> >>>
>>  Python looks good with VTK.But I'm not sure that VTK installed properly.
>>
>>  After that I can not run mesh2vtu.pl too, I get the same error.
>> [root at Redhat mesh2vtu]# ./mesh2vtu.pl -i velocity_Z_it000400.mesh -o
>> velocity_Z_it000400.vtu
>> env: /SPECFEM3D/utils/**Visualization/Paraview/**mesh2vtu: Permission
>> denied
>>
>>  I change files owner to root, and give all competence.
>> [root at Redhat mesh2vtu]# chown root:root *
>> [root at Redhat mesh2vtu]# chmod 777 *
>> [root at Redhat mesh2vtu]# ll
>> total 1100
>> -rwxrwxrwx 1 root root    4150 Apr 18  2010 cell2vtu.cxx
>> -rwxrwxrwx 1 root root    1385 Apr 18  2010 cell2vtu.pl
>> -rwxrwxrwx 1 root root     736 Apr 18  2010 century2xyz.pl
>> -rwxrwxrwx 1 root root     943 Dec  2 12:13 Makefile
>> -rwxrwxrwx 1 root root     943 Dec  2 12:13 Makefile~
>> -rwxrwxrwx 1 root root    1000 Nov 26 11:44 Makefile (copy)
>> -rwxrwxrwx 1 root root    3988 Apr 18  2010 mesh2vtu.cxx
>> -rwxrwxrwx 1 root root    1330 Nov 18 13:57 mesh2vtu.pl
>> -rwxrwxrwx 1 root root    1346 Nov 18 13:44 mesh2vtu.pl~
>> -rwxrwxrwx 1 root root    2046 Apr 18  2010 points2vtu.pl
>> -rwxrwxrwx 1 root root    4195 Apr 18  2010 surf2vtu.cxx
>> -rwxrwxrwx 1 root root    1399 Apr 18  2010 surf2vtu.pl
>> -rwxrwxrwx 1 root root    3001 Apr 18  2010 ugrid.cxx
>> -rwxrwxrwx 1 root root    1967 Apr 18  2010 ugrid_pts.cxx
>> -rwxrwxrwx 1 root root 1056328 Sep  7 14:43 velocity_Z_it000400.mesh
>>  But the error as before.
>>
>>  I try to 'make' in /SPECFEM3D/utils/**Visualization/Paraview/**mesh2vtu.
>> Then I get error as blow:
>> [root at Redhat mesh2vtu]# make
>> g++ -O3 -I/opt/seismo-util/include -I/opt/seismo-util/include/vtk -Wno-
>> deprecated -c mesh2vtu.cxx -o mesh2vtu.o
>> mesh2vtu.cxx:39:31: error: vtk/vtkFloatArray.h: No such file or directory
>> mesh2vtu.cxx:40:27: error: vtk/vtkPoints.h: No such file or directory
>> mesh2vtu.cxx:41:30: error: vtk/vtkPointData.h: No such file or directory
>> mesh2vtu.cxx:42:37: error: vtk/vtkUnstructuredGrid.h: No such file or
>> directory
>> mesh2vtu.cxx:43:46: error: vtk/**vtkXMLUnstructuredGridWriter.**h: No
>> such file or directory
>> mesh2vtu.cxx:44:53: error: vtk/**vtkUnstructuredGridToPolyDataF**ilter.h:
>> No such file or directory
>> mesh2vtu.cxx:45:38: error: vtk/vtkXMLPolyDataWriter.h: No such file or
>> directory
>> mesh2vtu.cxx:47:31: error: vtk/vtkDelaunay3D.h: No such file or directory
>> mesh2vtu.cxx:48:30: error: vtk/vtkCellArray.h: No such file or directory
>> mesh2vtu.cxx:49:29: error: vtk/vtkPointSet.h: No such file or directory
>> mesh2vtu.cxx:50:31: error: vtk/vtkHexahedron.h: No such file or directory
>> mesh2vtu.cxx: In function ‘int main(int, char**)’:
>> mesh2vtu.cxx:81: error: ‘vtkPoints’ was not declared in this scope
>> mesh2vtu.cxx:81: error: ‘newPts’ was not declared in this scope
>> mesh2vtu.cxx:81: error: ‘vtkPoints’ is not a class or namespace
>> mesh2vtu.cxx:82: error: ‘vtkFloatArray’ was not declared in this scope
>> mesh2vtu.cxx:82: error: ‘newScalars’ was not declared in this scope
>> mesh2vtu.cxx:82: error: ‘vtkFloatArray’ is not a class or namespace
>> mesh2vtu.cxx:94: error: ‘vtkCellArray’ was not declared in this scope
>> mesh2vtu.cxx:94: error: ‘cells’ was not declared in this scope
>> mesh2vtu.cxx:94: error: ‘vtkCellArray’ is not a class or namespace
>> mesh2vtu.cxx:102: error: ‘vtkHexahedron’ was not declared in this scope
>> mesh2vtu.cxx:102: error: ‘hex’ was not declared in this scope
>> mesh2vtu.cxx:102: error: ‘vtkHexahedron’ is not a class or namespace
>> mesh2vtu.cxx:118: error: ‘vtkUnstructuredGrid’ was not declared in this
>> scope
>> mesh2vtu.cxx:118: error: ‘dataSet’ was not declared in this scope
>> mesh2vtu.cxx:118: error: ‘vtkUnstructuredGrid’ is not a class or namespace
>> mesh2vtu.cxx:129: error: ‘vtkXMLUnstructuredGridWriter’ was not declared
>> in this scope
>> mesh2vtu.cxx:129: error: ‘writer’ was not declared in this scope
>> mesh2vtu.cxx:129: error: ‘vtkXMLUnstructuredGridWriter’ is not a class or
>> namespace
>> make: *** [mesh2vtu.o] Error 1
>>
>>  I edit Makefile in /SPECFEM3D/utils/**Visualization/Paraview/**mesh2vtu
>> as blow:
>> ##############################**##############################**#
>> ## modify to match your compiler defaults
>> CXX=g++
>>
>> ## modify to match your library paths
>> # VTK libraries
>> VTK=/opt/vtk/bin
>> LIBS=-L/usr/local/lib/vtk-5.8 -lvtkCommon -lvtkIO -lvtkRendering
>> -lvtkFiltering -lvtkGraphics
>>
>> INCLUDES=-I/usr/local/include/**vtk-5.8
>> CPPFLAGS= -O3 $(INCLUDES) -Wno-deprecated
>> ##############################**##############################**#
>> When I 'make' I get the same error:
>> [root at Redhat mesh2vtu]# make
>> g++ -O3 -I/usr/local/include/vtk-5.8  -Wno-  deprecated -c mesh2vtu.cxx
>> -o mesh2vtu.o
>> mesh2vtu.cxx:39:31: error: vtk/vtkFloatArray.h: No such file or directory
>> mesh2vtu.cxx:40:27: error: vtk/vtkPoints.h: No such file or directory
>> ......
>>
>>  I copy /opt/VTK-build/include/vtk-5.8 to /opt/VTK-build/include/vtk
>> [root at Redhat mesh2vtu]# cp /opt/VTK-build/include/vtk-5.8
>> /opt/VTK-build/include/vtk
>> [root at Redhat include]# ll
>> total 204
>> drwxr-xr-x  2 root root   4096 Nov 18 12:49 GL
>> drwxr-xr-x  2 root root   4096 Dec  1 15:06 python2.7
>> drwxr-xr-x 20 root root  73728 Dec  2 09:39 vtk
>> drwxr-xr-x 20 root root 118784 Dec  2 09:39 vtk-5.8
>>
>>  After that I try to edit Makefile again in /SPECFEM3D/utils/**
>> Visualization/Paraview/**mesh2vtu.
>> ##############################**##############################**#
>> ## modify to match your compiler defaults
>> CXX=g++
>>
>> ## modify to match your library paths
>> # VTK libraries
>> VTK=/opt/vtk/bin
>> LIBS=-L/usr/local/lib/vtk-5.8 -lvtkCommon -lvtkIO -lvtkRendering
>> -lvtkFiltering -lvtkGraphics
>>
>> INCLUDES=-I/usr/local/include/
>> CPPFLAGS= -O3 $(INCLUDES) -Wno-deprecated
>> ##############################**##############################**#
>> When I 'make', I get new error as blow:
>> [root at Redhat mesh2vtu]# make
>> c++ -O3 -I/usr/local/include/ -Wno-deprecated -c mesh2vtu.cxx -o
>> mesh2vtu.o
>> In file included from /usr/local/include/vtk/**vtkVariant.h:35,
>>                 from /usr/local/include/vtk/**vtkAbstractArray.h:45,
>>                 from /usr/local/include/vtk/**vtkDataArray.h:37,
>>                 from /usr/local/include/vtk/**vtkFloatArray.h:29,
>>                 from mesh2vtu.cxx:39:
>> /usr/local/include/vtk/**vtkStdString.h:25:54: error: vtkstd/string: No
>> such file or directory
>> In file included from /usr/local/include/vtk/**vtkVariant.h:36,
>>                 from /usr/local/include/vtk/**vtkAbstractArray.h:45,
>>                 from /usr/local/include/vtk/**vtkDataArray.h:37,
>>                 from /usr/local/include/vtk/**vtkFloatArray.h:29,
>>                 from mesh2vtu.cxx:39:
>> /usr/local/include/vtk/**vtkUnicodeString.h:47:31: error:
>> vtkSystemIncludes.h: No such file or directory
>> /usr/local/include/vtk/**vtkUnicodeString.h:49:25: error: vtkstd/vector:
>> No such file or directory
>> /usr/local/include/vtk/**vtkUnicodeString.h:156: error: invalid use of
>> ‘::’
>> /usr/local/include/vtk/**vtkUnicodeString.h:156: error: expected ‘;’
>> before ‘<’ token
>> /usr/local/include/vtk/**vtkUnicodeString.h:160: error: ‘std::vector’
>> has not been declared
>> /usr/local/include/vtk/**vtkUnicodeString.h:160: error: expected ‘,’ or
>> ‘...’ before ‘<’ token
>> make: *** [mesh2vtu.o] Error 1
>>
>>  All of *.h file is in /usr/local/include/vtk/.
>>  What should I do for this?
>> ------------------------------**---------------
>> fang zhao
>>
>>
>>
>
> _______________________________________________
> CIG-SEISMO mailing list
> CIG-SEISMO at geodynamics.org
> http://geodynamics.org/cgi-bin/mailman/listinfo/cig-seismo
>



-- 
---------------------------------------------
Steven Hu
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://geodynamics.org/pipermail/cig-seismo/attachments/20130523/0b9ed2ec/attachment-0001.html>
-------------- next part --------------
[root at mesh2vtu mesh2vtu]# ./mesh2vtu -i velocity_E_it030000.mesh -o velocity_E_it030000.vtu
./mesh2vtu: Reading mesh file ...
Error opening file: -i.
  * no. of points: 0
  * no. of cells:  0
./mesh2vtu: Creating VTK data structure ...
  * insert point coords 
  * insert point data 
  * insert cell connectivity 
  * build unstructured grid 
./mesh2vtu: Writing unstructured VTK file (XML): velocity_E_it030000.mesh
*** glibc detected *** ./mesh2vtu: free(): invalid pointer: 0x00007fff9bc3d720 ***
======= Backtrace: =========
/lib64/libc.so.6[0x3f8d67247f]
/lib64/libc.so.6(cfree+0x4b)[0x3f8d6728db]
./mesh2vtu[0x4014b6]
/lib64/libc.so.6(__libc_start_main+0xf4)[0x3f8d61d994]
./mesh2vtu(__gxx_personality_v0+0xd1)[0x400e39]
======= Memory map: ========
00400000-00402000 r-xp 00000000 08:03 21998830                           /root/mesh2vtu/mesh2vtu
00601000-00602000 rw-p 00001000 08:03 21998830                           /root/mesh2vtu/mesh2vtu
15b68000-15baa000 rw-p 15b68000 00:00 0                                  [heap]
3f8d200000-3f8d21c000 r-xp 00000000 08:03 65790                          /lib64/ld-2.5.so
3f8d41c000-3f8d41d000 r--p 0001c000 08:03 65790                          /lib64/ld-2.5.so
3f8d41d000-3f8d41e000 rw-p 0001d000 08:03 65790                          /lib64/ld-2.5.so
3f8d600000-3f8d74f000 r-xp 00000000 08:03 65791                          /lib64/libc-2.5.so
3f8d74f000-3f8d94e000 ---p 0014f000 08:03 65791                          /lib64/libc-2.5.so
3f8d94e000-3f8d952000 r--p 0014e000 08:03 65791                          /lib64/libc-2.5.so
3f8d952000-3f8d953000 rw-p 00152000 08:03 65791                          /lib64/libc-2.5.so
3f8d953000-3f8d958000 rw-p 3f8d953000 00:00 0 
3f8da00000-3f8da82000 r-xp 00000000 08:03 65796                          /lib64/libm-2.5.so
3f8da82000-3f8dc81000 ---p 00082000 08:03 65796                          /lib64/libm-2.5.so
3f8dc81000-3f8dc82000 r--p 00081000 08:03 65796                          /lib64/libm-2.5.so
3f8dc82000-3f8dc83000 rw-p 00082000 08:03 65796                          /lib64/libm-2.5.so
3f8de00000-3f8de02000 r-xp 00000000 08:03 65793                          /lib64/libdl-2.5.so
3f8de02000-3f8e002000 ---p 00002000 08:03 65793                          /lib64/libdl-2.5.so
3f8e002000-3f8e003000 r--p 00002000 08:03 65793                          /lib64/libdl-2.5.so
3f8e003000-3f8e004000 rw-p 00003000 08:03 65793                          /lib64/libdl-2.5.so
3f8e600000-3f8e616000 r-xp 00000000 08:03 65794                          /lib64/libpthread-2.5.so
3f8e616000-3f8e815000 ---p 00016000 08:03 65794                          /lib64/libpthread-2.5.so
3f8e815000-3f8e816000 r--p 00015000 08:03 65794                          /lib64/libpthread-2.5.so
3f8e816000-3f8e817000 rw-p 00016000 08:03 65794                          /lib64/libpthread-2.5.so
3f8e817000-3f8e81b000 rw-p 3f8e817000 00:00 0 
3f8ea00000-3f8ea02000 r-xp 00000000 08:03 23812492                       /usr/lib64/libXau.so.6.0.0
3f8ea02000-3f8ec01000 ---p 00002000 08:03 23812492                       /usr/lib64/libXau.so.6.0.0
3f8ec01000-3f8ec02000 rw-p 00001000 08:03 23812492                       /usr/lib64/libXau.so.6.0.0
3f8ee00000-3f8ef05000 r-xp 00000000 08:03 23831126                       /usr/lib64/libX11.so.6.2.0
3f8ef05000-3f8f105000 ---p 00105000 08:03 23831126                       /usr/lib64/libX11.so.6.2.0
3f8f105000-3f8f10c000 rw-p 00105000 08:03 23831126                       /usr/lib64/libX11.so.6.2.0
3f8f200000-3f8f205000 r-xp 00000000 08:03 23831125                       /usr/lib64/libXdmcp.so.6.0.0
3f8f205000-3f8f404000 ---p 00005000 08:03 23831125                       /usr/lib64/libXdmcp.so.6.0.0
3f8f404000-3f8f405000 rw-p 00004000 08:03 23831125                       /usr/lib64/libXdmcp.so.6.0.0
3f8f600000-3f8f610000 r-xp 00000000 08:03 23831130                       /usr/lib64/libXext.so.6.4.0
3f8f610000-3f8f810000 ---p 00010000 08:03 23831130                       /usr/lib64/libXext.so.6.4.0
3f8f810000-3f8f811000 rw-p 00010000 08:03 23831130                       /usr/lib64/libXext.so.6.4.0
3f8fa00000-3f8fa7f000 r-xp 00000000 08:03 23831135                       /usr/lib64/libfreetype.so.6.3.10
3f8fa7f000-3f8fc7f000 ---p 0007f000 08:03 23831135                       /usr/lib64/libfreetype.so.6.3.10
3f8fc7f000-3f8fc84000 rw-p 0007f000 08:03 23831135                       /usr/lib64/libfreetype.so.6.3.10
3f8fe00000-3f8fe20000 r-xp 00000000 08:03 65797                          /lib64/libexpat.so.0.5.0
3f8fe20000-3f9001f000 ---p 00020000 08:03 65797                          /lib64/libexpat.so.0.5.0
3f9001f000-3f90022000 rw-p 0001f000 08:03 65797                          /lib64/libexpat.so.0.5.0
3f90200000-3f90229000 r-xp 00000000 08:03 23831136                       /usr/lib64/libfontconfig.so.1.1.0
3f90229000-3f90429000 ---p 00029000 08:03 23831136                       /usr/lib64/libfontconfig.so.1.1.0
3f90429000-3f90433000 rw-p 00029000 08:03 23831136                       /usr/lib64/libfontconfig.so.1.1.0
3f90433000-3f90434000 rw-p 3f90433000 00:00 0 
3f90600000-3f90609000 r-xp 00000000 08:03 23831129                       /usr/lib64/libXrender.so.1.3.0
3f90609000-3f90808000 ---p 00009000 08:03 23831129                       /usr/lib64/libXrender.so.1.3.0
3f90808000-3f90809000 rw-p 00008000 08:03 23831129                       /usr/lib64/libXrender.so.1.3.0
3f90e00000-3f90e09000 r-xp 00000000 08:03 23831139                       /usr/lib64/libSM.so.6.0.0
3f90e09000-3f91009000 ---p 00009000 08:03 23831139                       /usr/lib64/libSM.so.6.0.0
3f91009000-3f9100a000 rw-p 00009000 08:03 23831139                       /usr/lib64/libSM.so.6.0.0
3f91200000-3f91217000 r-xp 00000000 08:03 23831138                       /usr/lib64/libICE.so.6.3.0
3f91217000-3f91416000 ---p 00017000 08:03 23831138                       /usr/lib64/libICE.so.6.3.0
3f91416000-3f91418000 rw-p 00016000 08:03 23831138                       /usr/lib64/libICE.so.6.3.0
3f91418000-3f9141b000 rw-p 3f91418000 00:00 0 
3f92e00000-3f92e0d000 r-xp 00000000 08:03 65798                          /lib64/libgcc_s-4.1.2-20080825.so.1
3f92e0d000-3f9300d000 ---p 0000d000 08:03 65798                          /lib64/libgcc_s-4.1.2-20080825.so.1
3f9300d000-3f9300e000 rw-p 0000d000 08:03 65798                          /lib64/libgcc_s-4.1.2-20080825.so.1
3f93200000-3f9326e000 r-xp 00000000 08:03 23831215                       /usr/lib64/libGL.so.1.2
3f9326e000-3f9346e000 ---p 0006e000 08:03 23831215                       /usr/lib64/libGL.so.1.2
3f9346e000-3f93478000 rw-p 0006e000 08:03 23831215                       /usr/lib64/libGL.so.1.2
3f93478000-3f9347a000 rw-p 3f93478000 00:00 0 
3f93600000-3f936e6000 r-xp 00000000 08:03 23831140                       /usr/lib64/libstdc++.so.6.0.8
3f936e6000-3f938e5000 ---p 000e6000 08:03 23831140                       /usr/lib64/libstdc++.so.6.0.8
3f938e5000-3f938eb000 r--p 000e5000 08:03 23831140                       /usr/lib64/libstdc++.so.6.0.8
3f938eb000-3f938ee000 rw-p 000eb000 08:03 23831140                       /usr/lib64/libstdc++.so.6.0.8
3f938ee000-3f93900000 rw-p 3f938ee000 00:00 0 
3f93a00000-3f93a07000 r-xp 00000000 08:03 23831214                       /usr/lib64/libdrm.so.2.0.0
3f93a07000-3f93c07000 ---p 00007000 08:03 23831214                       /usr/lib64/libdrm.so.2.0.0
3f93c07000-3f93c08000 rw-p 00007000 08:03 23831214                       /usr/lib64/libdrm.so.2.0.0
3f94e00000-3f94e13000 r-xp 00000000 08:03 23831137                       /usr/lib64/libXft.so.2.1.2
3f94e13000-3f95012000 ---p 00013000 08:03 23831137                       /usr/lib64/libXft.so.2.1.2
3f95012000-3f95013000 rw-p 00012000 08:03 23831137                       /usr/lib64/libXft.so.2.1.2
3f9b200000-3f9b205000 r-xp 00000000 08:03 23823698                       /usr/lib64/libXxf86vm.so.1.0.0
3f9b205000-3f9b404000 ---p 00005000 08:03 23823698                       /usr/lib64/libXxf86vm.so.1.0.0
3f9b404000-3f9b405000 rw-p 00004000 08:03 23823698                       /usr/lib64/libXxf86vm.so.1.0.0
3fa2000000-3fa2002000 r-xp 00000000 08:03 23813714                       /usr/lib64/libXss.so.1.0.0
3fa2002000-3fa2202000 ---p 00002000 08:03 23813714                       /usr/lib64/libXss.so.1.0.0
3fa2202000-3fa2203000 rw-p 00002000 08:03 23813714                       /usr/lib64/libXss.so.1.0.0
3fa2400000-3fa245b000 r-xp 00000000 08:03 23805285                       /usr/lib64/libXt.so.6.0.0
3fa245b000-3fa265a000 ---p 0005b000 08:03 23805285                       /usr/lib64/libXt.so.6.0.0
3fa265a000-3fa2660000 rw-p 0005a000 08:03 23805285                       /usr/lib64/libXt.so.6.0.0
3fa2660000-3fa2661000 rw-p 3fa2660000 00:00 0 
2aded8d6e000-2aded8d70000 rw-p 2aded8d6e000 00:00 0 
2aded8d70000-2aded924c000 r-xp 00000000 08:03 21114721                   /vtk/bin/libvtkCommon.so.5.8.0
2aded924c000-2aded944c000 ---p 004dc000 08:03 21114721                   /vtk/bin/libvtkCommon.so.5.8.0
2aded944c000-2aded9480000 rw-p 004dc000 08:03 21114721                   /vtk/bin/libvtkCommon.so.5.8.0
2aded9480000-2aded9481000 rw-p 2aded9480000 00:00 0 
2aded9481000-2aded9b9a000 r-xp 00000000 08:03 21114754                   /vtk/bin/libvtkIO.so.5.8.0
2aded9b9a000-2aded9d99000 ---p 00719000 08:03 21114754                   /vtk/bin/libvtkIO.so.5.8.0
2aded9d99000-2aded9dd7000 rw-p 00718000 08:03 21114754                   /vtk/bin/libvtkIO.so.5.8.0
2aded9dd7000-2aded9dda000 rw-p 2aded9dd7000 00:00 0 
2aded9dda000-2adeda388000 r-xp 00000000 08:03 21114730                   /vtk/bin/libvtkFiltering.so.5.8.0
2adeda388000-2adeda587000 ---p 005ae000 08:03 21114730                   /vtk/bin/libvtkFiltering.so.5.8.0
2adeda587000-2adeda5c7000 rw-p 005ad000 08:03 21114730                   /vtk/bin/libvtkFiltering.so.5.8.0
2adeda5c7000-2adeda5c8000 rw-p 2adeda5c7000 00:00 0 
2adeda5c8000-2adedabf7000 r-xp 00000000 08:03 21180200                   /vtk/bin/libvtkRendering.so.5.8.0
2adedabf7000-2adedadf6000 ---p 0062f000 08:03 21180200                   /vtk/bin/libvtkRendering.so.5.8.0
2adedadf6000-2adedaecb000 rw-p 0062e000 08:03 21180200                   /vtk/bin/libvtkRendering.so.5.8.0
2adedaecb000-2adedaecf000 rw-p 2adedaecb000 00:00 0 
2adedaecf000-2adedb947000 r-xp 00000000 08:03 21114742                   /vtk/bin/libvtkGraphics.so.5.8.0
2adedb947000-2adedbb46000 ---p 00a78000 08:03 21114742                   /vtk/bin/libvtkGraphics.so.5.8.0
2adedbb46000-2adedbbab000 rw-p 00a77000 08:03 21114742                   /vtk/bin/libvtkGraphics.so.5.8.0
2adedbbab000-2adedbbac000 rw-p 2adedbbab000 00:00 0 
2adedbbcf000-2adedbbd1000 rw-p 2adedbbcf000 00:00 0 
2adedbbd1000-2adedbc30000 r-xp 00000000 08:03 8940082                    /vtk/bin/libvtksys.so.5.8.0
2adedbc30000-2adedbe2f000 ---p 0005f000 08:03 8940082                    /vtk/bin/libvtksys.so.5.8.0
2adedbe2f000-2adedbe32000 rw-p 0005e000 08:03 8940082                    /vtk/bin/libvtksys.so.5.8.0
2adedbe32000-2adedbe33000 rw-p 2adedbe32000 00:00 0 
2adedbe33000-2adedbe73000 r-xp 00000000 08:03 8940565                    /vtk/bin/libvtkDICOMParser.so.5.8.0
2adedbe73000-2adedc072000 ---p 00040000 08:03 8940565                    /vtk/bin/libvtkDICOMParser.so.5.8.0
2adedc072000-2adedc075000 rw-p 0003f000 08:03 8940565                    /vtk/bin/libvtkDICOMParser.so.5.8.0
2adedc075000-2adedc107000 r-xp 00000000 08:03 8940787                    /vtk/bin/libvtkNetCDF.so.5.8.0
2adedc107000-2adedc307000 ---p 00092000 08:03 8940787                    /vtk/bin/libvtkNetCDF.so.5.8.0
2adedc307000-2adedc355000 rw-p 00092000 08:03 8940787                    /vtk/bin/libvtkNetCDF.so.5.8.0
2adedc355000-2adedc357000 rw-p 2adedc355000 00:00 0 
2adedc357000-2adedc376000 r-xp 00000000 08:03 8940794                    /vtk/bin/libvtkNetCDF_cxx.so
2adedc376000-2adedc576000 ---p 0001f000 08:03 8940794                    /vtk/bin/libvtkNetCDF_cxx.so
2adedc576000-2adedc578000 rw-p 0001f000 08:03 8940794                    /vtk/bin/libvtkNetCDF_cxx.so
2adedc578000-2adedc579000 rw-p 2adedc578000 00:00 0 
2adedc579000-2adedc656000 r-xp 00000000 08:03 8940822                    /vtk/bin/libvtkmetaio.so.5.8.0
2adedc656000-2adedc855000 ---p 000dd000 08:03 8940822                    /vtk/bin/libvtkmetaio.so.5.8.0
2adedc855000-2adedc85b000 rw-p 000dc000 08:03 8940822                    /vtk/bin/libvtkmetaio.so.5.8.0
2adedc85b000-2adedc8e9000 r-xp 00000000 08:03 8940828                    /vtk/bin/libvtksqlite.so.5.8.0
2adedc8e9000-2adedcae8000 ---p 0008e000 08:03 8940828                    /vtk/bin/libvtksqlite.so.5.8.0
2adedcae8000-2adedcaeb000 rw-p 0008d000 08:03 8940828                    /vtk/bin/libvtksqlite.so.5.8.0
2adedcaeb000-2adedcb1d000 r-xp 00000000 08:03 8940425                    /vtk/bin/libvtkpng.so.5.8.0
2adedcb1d000-2adedcd1d000 ---p 00032000 08:03 8940425                    /vtk/bin/libvtkpng.so.5.8.0
2adedcd1d000-2adedcd1e000 rw-p 00032000 08:03 8940425                    /vtk/bin/libvtkpng.so.5.8.0
2adedcd1e000-2adedcd1f000 rw-p 2adedcd1e000 00:00 0 
2adedcd1f000-2adedcd37000 r-xp 00000000 08:03 8940099                    /vtk/bin/libvtkzlib.so.5.8.0
2adedcd37000-2adedcf37000 ---p 00018000 08:03 8940099                    /vtk/bin/libvtkzlib.so.5.8.0
2adedcf37000-2adedcf38000 rw-p 00018000 08:03 8940099                    /vtk/bin/libvtkzlib.so.5.8.0
2adedcf38000-2adedcf63000 r-xp 00000000 08:03 8940403                    /vtk/bin/libvtkjpeg.so.5.8.0
2adedcf63000-2adedd162000 ---p 0002b000 08:03 8940403                    /vtk/bin/libvtkjpeg.so.5.8.0
2adedd162000-2adedd163000 rw-p 0002a000 08:03 8940403                    /vtk/bin/libvtkjpeg.so.5.8.0
2adedd163000-2adedd1ce000 r-xp 00000000 08:03 8940471                    /vtk/bin/libvtktiff.so.5.8.0
2adedd1ce000-2adedd3ce000 ---p 0006b000 08:03 8940471                    /vtk/bin/libvtktiff.so.5.8.0
2adedd3ce000-2adedd3d1000 rw-p 0006b000 08:03 8940471                    /vtk/bin/libvtktiff.so.5.8.0
2adedd3d1000-2adedd3d2000 rw-p 2adedd3d1000 00:00 0 
2adeAborted
[root at mesh2vtu mesh2vtu]# 


More information about the CIG-SEISMO mailing list