[Paraview] Antw: Re: Multiple Screens

2008-12-04 Thread Christian Wohlschlager
** Reply Requested When Convenient ** Dear Kenneth ! Sorry Sorry Sorry it was mpirun -np 1 ./pvserver -display :0.0 : -np 1 ./pvserver -display :0. 1 : -np 1 ./pvserver -display :0.2 i try the one again and i will tell you the result mfg christian

Re: [Paraview] Ghost cells for standalone Paraview

2008-12-04 Thread Fabian Wein
Hi Ken, thanks a lot - you solved the issue! :) It works fine with the clip filter - memory consumption seems to be in the green range! Best regards from ol' Europe, Fabian OK, I understand now. What you are asking for is not exactly what VTK/ParaView considers ghost cells. You want add a

[Paraview] problems linking my plugin

2008-12-04 Thread Natalie Happenhofer
Hi! Again, I get a linker error building my plugin for paraview, at the point Linking CXX shared library ..\bin\libDataCalculator.dll it says: In function 'ZNK17vtkDataCalclulator19NewInstanceInternalEv': undefined reference to vtkDataCalculator::FillInputInformation(int,vtkInformation*)

Re: [Paraview] problems linking my plugin

2008-12-04 Thread David E DeMarle
int FillInputPortInformation(int ,vtkInformation* info) should be int vtkDataCalculator::FillInputPortInformation(int ,vtkInformation* info) On Thu, Dec 4, 2008 at 8:47 AM, Natalie Happenhofer [EMAIL PROTECTED] wrote: Hi! Again, I get a linker error building my plugin for paraview, at the

[Paraview] file-transfer in paraview -- pvserver

2008-12-04 Thread Jens
Hi, Can anyone tell me how file-transfer is done if paraview(client/server) is used? a) does paraview(client) always sends the whole data (for me a lot of GBytes) to pvserver, b) or do I have to have a directory, which is mounted on the client and server at the same position, c) or is there even

[Paraview] Python CreateRenderView

2008-12-04 Thread Jacques Papper
Hi, I am wondering why when I do the following in pvpython: from paraview import servermanager servermanager.Connect() view = servermanager.CreateRenderView() print servermanager.GetRenderView() This shows None - Shouldn't creating a render view set it as well ? Is there a way of setting it ?

Re: [Paraview] file-transfer in paraview -- pvserver

2008-12-04 Thread Utkarsh Ayachit
Jens, When operating in client-server mode (connected to a pvserver), ParaView can only open data files located on the server side (option c). The Open File is indeed browsing the server side directory structure when connection to a server node. Utkarsh Jens wrote: Hi, Can anyone tell me