[Paraview] crashes in loading vtu in pvserver/client mode

2010-06-29 Thread Philippe David
Hello , for many versions we faced regular crashes when loading a vtu in client/server mode. The same problem remains with V3.8.0 error message from putty(openSSH terminal) Using keyboard-interactive authentication. Password: Listen on port: 1 Waiting for client...

Re: [Paraview] Problems building 3.8.0

2010-06-29 Thread Dave Partyka
Hi Carolyn, I was able to finally track down a machine with this compiler, reproduce and fix it last night. I apologize for the delay. That machine now submits a nightly dashboard to VTK so we know right away when it breaks. http://www.cdash.org/CDash/buildSummary.php?buildid=650969

Re: [Paraview] Visualizations works converted to python code

2010-06-29 Thread Utkarsh Ayachit
ParaView supports tracing your actions into Python as your are doing them in the GUI as well as save the current state in a python script. Refer to http://www.paraview.org/Wiki/Python_GUI_Tools for details. Utkarsh On Tue, Jun 29, 2010 at 7:55 AM, rhush...@iitk.ac.in wrote: Hi, I am working

Re: [Paraview] Visualizations works converted to python code

2010-06-29 Thread Laurent Vanboquestal
Hi, But when execute this code, do you have an 'opengl vtk window' automatically opened ? Is it possible to get rid of this window ? Thanks, Laurent On Tue, Jun 29, 2010 at 3:36 PM, Utkarsh Ayachit utkarsh.ayac...@kitware.com wrote: ParaView supports tracing your actions into Python as

Re: [Paraview] crashes in loading vtu in pvserver/client mode

2010-06-29 Thread Utkarsh Ayachit
Any possibility of sharing a sample dataset with which this can be reproduced? Utkarsh On Tue, Jun 29, 2010 at 3:38 AM, Philippe David pda...@scconsultants.com wrote: Hello , for many versions we faced regular crashes when loading a vtu in client/server mode. The same problem remains with

[Paraview] XDMF writing problem

2010-06-29 Thread Samer Afach
Hello programmers, I'm new to this list, I'm not sure I'm asking in the right place, but I'll try to ask and I hope I'll get the answer I'm looking for :) . I have an HDF5 file which is an array of 8-bit double 3D array of pressure values for a sample I have, the size of this array is

Re: [Paraview] crashes in loading vtu in pvserver/client mode

2010-06-29 Thread Berk Geveci
Utkarsh, I have an example dataset. -berk On Tue, Jun 29, 2010 at 10:51 AM, Utkarsh Ayachit utkarsh.ayac...@kitware.com wrote: Any possibility of sharing a sample dataset with which this can be reproduced? Utkarsh On Tue, Jun 29, 2010 at 3:38 AM, Philippe David pda...@scconsultants.com

[Paraview] Rendering a sub-class of vtkImageData in paraview

2010-06-29 Thread Lord, John (UK)
Hi, I have written a sub-class of vtkImageData that holds additional information for processing the data further down the pipeline. When a filter outputs my sub-class, Paraview gives the message Cannot show the data in the current view although the view reported that it can show the data. How

Re: [Paraview] XDMF writing problem

2010-06-29 Thread Eric E. Monson
Hello Samer, You may need to explain a bit more what you mean by the final result I got was not pleasing. It looks like there may be a problem in that you are defining 320x304x304 points for your grid, but you also are stating that the same number of Pressure attributes exist, centered on

[Paraview] Problems building 3.8.0 for 64-bit Mac

2010-06-29 Thread Ben Medina
Hello, I just downloaded the 3.8.0 source and am trying to compile a 64-bit version on Mac OS 10.5. During the build of the pqWidgets target, this error occurs: .../ParaView-3.8.0/Qt/Widgets/pqProgressBarHelper.cxx:37: error: type 'class QObject' is not a direct base of 'pqProgressBarHelper'

Re: [Paraview] Problems building 3.8.0 for 64-bit Mac

2010-06-29 Thread Utkarsh Ayachit
If you look at Qt/Widgets/CMakeLists.txt, around line #79, it doesn't add pqProgressBarHelper.cxx as a source to compile on macs, instead it uses pqProgressBarHelper.mm. Now the question why isn't that happening in your case. Try adding the following; message( Q_WS_MAC == ${Q_WS_MAC}) What does

Re: [Paraview] Problems building 3.8.0 for 64-bit Mac

2010-06-29 Thread Dave Partyka
Hi Ben, can you send us your CMakeCache.txt in the root of your build tree. On Tue, Jun 29, 2010 at 4:40 PM, Ben Medina ben.med...@gmail.com wrote: It just prints out: Q_WS_MAC == I'm not sure what is responsible for setting that variable; I've only ever seen it used in C++ source as a

Re: [Paraview] Rendering a sub-class of vtkImageData in paraview

2010-06-29 Thread Berk Geveci
This would probably require changing the ParaView code in a few places. I suspect that we have things like if (classname == vtkImageData) all over the place. However, there may be a better solution. Can you explain what additional information you are storing in this subclass? -berk On Tue, Jun