[Paraview] Building ParaView on Windows XP

2011-05-06 Thread Natalie Happenhofer
Hi! I'm trying to build ParaView 3.8.0-RC2 on Windows XP. I'm using Visual C++ Express 9 (2008). I've compiled Qt 4.6.2 with Visual C++ Express. Following the instructions on the ParaView Build and Install- page on the Wiki, I get to actually build the code, but linking the target

[Paraview] Select blocks a reader will load

2011-05-06 Thread papa ndéné NDIAYE
Hi all, Forgive my silly questions as a newby, I am actually building Paraview reader for a multiblock dataset. There will be many blocks in the files I want to load and I am thinking about offering the possibility to choose the blocks that will be loaded. Can I have something similar to

Re: [Paraview] 3.10.1 Issues with resizing with OSMesa

2011-05-06 Thread Kevin H. Hobbs
On 05/05/2011 04:09 PM, Utkarsh Ayachit wrote: Folks, Recently an issue was noticed by some of our users. Evidently, when resizing ParaView client that is connected to a pvserver using OSMesa, the server would hang if there were any text items (such as Text source) in the view. I am trying

Re: [Paraview] Building ParaView on Windows XP

2011-05-06 Thread mirko heuegger
Hello! On Fri, May 6, 2011 at 9:32 AM, Natalie Happenhofer natalieh...@hotmail.com wrote: build ParaView 3.8.0-RC2 on Visual C++ Express 9 (2008). error LNK2019: Undefined symbol _WinMain@16 in function ___tmainCRTStartup. There is a similar discussion on the vtk-list:

Re: [Paraview] Select blocks a reader will load

2011-05-06 Thread Felipe Bordeu
Look the class used by the xdmf reader. Felipe On 06/05/2011 11:53, papa ndéné NDIAYE wrote: Hi all, Forgive my silly questions as a newby, I am actually building Paraview reader for a multiblock dataset. There will be many blocks in the files I want to load and I am thinking about

Re: [Paraview] Problems with 'interpolate scalars before mapping' in v3.10

2011-05-06 Thread Utkarsh Ayachit
Nenad, There;s nothing much different about the vtkCompositePolyDataMapper or vtkPolyDataMapper as far as the state of the InterpolateScalarsBeforeMapping flag goes. I cannot see how that variable can return false if it is indeed set to true as you are saying. Can you share the plugin? Utkarsh

Re: [Paraview] Building ParaView on Windows XP

2011-05-06 Thread Natalie Happenhofer
This really seems to solve my problem if I would find the part in the CMakeList.txt where this reply points to: In your CMakeLists.txt file you need the following set of commands to properly find Qt4 and set it up for use: #

Re: [Paraview] using vtkInformation in 3.10

2011-05-06 Thread Berk Geveci
Hi Burlen, There is support for this in the pipeline. In the appropriate pipeline pass (REQUEST_INFORMATION, REQUEST_UPDATE_EXTENT ro REQUEST_DATA), add the keys you want copied to the request object (the first argument to ProcessRequest) under the KEYS_TO_COPY key. This will tell the executive

Re: [Paraview] 3.10.1 Issues with resizing with OSMesa

2011-05-06 Thread Kevin H. Hobbs
On 05/05/2011 04:09 PM, Utkarsh Ayachit wrote: Folks, Recently an issue was noticed by some of our users. Evidently, when resizing ParaView client that is connected to a pvserver using OSMesa, the server would hang if there were any text items (such as Text source) in the view. I am trying

Re: [Paraview] Select blocks a reader will load

2011-05-06 Thread papa ndéné NDIAYE
Hi Felipe, Thanks for answering, I Found the classes source but still can't find the xml linking it to the GUI, neither the way attributes are modified through the GUI. Could you explain it to me? Regards, Papa 2011/5/6 Felipe Bordeu felipe.bor...@ec-nantes.fr Look the class used by the xdmf

Re: [Paraview] Select blocks a reader will load

2011-05-06 Thread papa ndéné NDIAYE
What I understood so far is that all the information are put into the SIL and sent throug the pipeline. the question is how does the user modify the SIL? Regards, PAPA 2011/5/6 papa ndéné NDIAYE pnwirefr...@gmail.com Hi Felipe, Thanks for answering, I Found the classes source but still can't

Re: [Paraview] Select blocks a reader will load

2011-05-06 Thread papa ndéné NDIAYE
I finally understood with the exodusII reader source. Thanks, PAPA 2011/5/6 papa ndéné NDIAYE pnwirefr...@gmail.com What I understood so far is that all the information are put into the SIL and sent throug the pipeline. the question is how does the user modify the SIL? Regards, PAPA

Re: [Paraview] [Paraview-developers] ParaView Co-Processing docs

2011-05-06 Thread Andy Bauer
Hi Grzegorz, I've cc'd the main ParaView list as this thread does not relate to specific ParaView development issues. This also allows other people to participate. For the adaptor stuff that you're probably interested in the 2011 tutorial won't have much new compared to the 2010 tutorial. If

[Paraview] plugin through server manager configuration xml

2011-05-06 Thread pratik
Hi, I copied the code for vtkCellDerivatives.xml given here: http://paraview.org/Wiki/Plugin_HowTo#Enabling_an_existing_VTK_filter verbatim and loaded it into PV 3.10.1 through the plugin manager, but the filter does not appear on the filters-alphabetical tab. Is there something else that I

Re: [Paraview] plugin through server manager configuration xml

2011-05-06 Thread Utkarsh Ayachit
There's already a filter named CellDerivative in paraview and hence it doesnt' show up separately. Just rename the proxy as CellDerrivative2 or something and you'll see it in the filters list. I am going to update the wiki as well. Utkarsh On Fri, May 6, 2011 at 2:16 PM, pratik

Re: [Paraview] 3.10.1 Issues with resizing with OSMesa

2011-05-06 Thread Utkarsh Ayachit
Thanks for the info. Utkarsh On Fri, May 6, 2011 at 9:15 AM, Kevin H. Hobbs hob...@ohio.edu wrote: On 05/05/2011 04:09 PM, Utkarsh Ayachit wrote: Folks, Recently an issue was noticed by some of our users. Evidently, when resizing ParaView client that is connected to a pvserver using OSMesa,

Re: [Paraview] using vtkInformation in 3.10

2011-05-06 Thread Burlen Loring
Thanks, it worked! On 05/06/2011 06:00 AM, Berk Geveci wrote: Hi Burlen, There is support for this in the pipeline. In the appropriate pipeline pass (REQUEST_INFORMATION, REQUEST_UPDATE_EXTENT ro REQUEST_DATA), add the keys you want copied to the request object (the first argument to