[Paraview] Build Custom Paraview and plugin in separate directories ?

2010-09-22 Thread R M
Hi everyone, I would like to know if it is possible to build a custom paraview (withe version 3.8) in a specific directory out of Paraview directory source code (the same for a plugin). I guess it is possible but I am new with cmake configuration and I would like to know how to do this.

[Paraview] Re : Re : Problem with plugin Creation

2010-09-28 Thread R M
I have found. I had forgotten in the CMakeLists.txt the ligne GUI_RESOURCE_FILES TestReaderGUI.xml in the ADD_PARAVIEW_PLUGIN. Now it 's ok. De : R M mlok...@yahoo.fr À : paraview@paraview.org Envoyé le : Mar 28 septembre 2010, 8h 39min 02s Objet : [Paraview

[Paraview] Drawing 2D data

2010-09-30 Thread R M
Hi, I would to like to have your advice concerning the display of 2D data. I have some structure containing x, y positions, connectivity in order to create triangles, quads, lines, ... and attributes (acceleration, speed,...) that are associated to nodes. For the moment I can display

[Paraview] Re : Drawing 2D data

2010-09-30 Thread R M
De : R M mlok...@yahoo.fr À : paraview@paraview.org Envoyé le : Jeu 30 septembre 2010, 14h 06min 58s Objet : [Paraview] Drawing 2D data Hi, I would to like to have your advice concerning the display of 2D data. I have some structure containing x, y positions

[Paraview] How to add vector/scalar field as attributes to a vtkPointSet (vtkPolyData, ...)?

2010-10-12 Thread R M
Hi, Like the title say, I would to like to add some attributes to a vtkPointSet (vtkPolyData and vtkUnstructuredGrid). The attributes are vector(2D, 3D,...) field or scalar field. For a scalar Field, If I want to add an attribute to the cells , I do: output-GetCellData()-AddArray( data) and

[Paraview] Re : How to add vector/scalar field as attributes to a vtkPointSet (vtkPolyData, ...)?

2010-10-13 Thread R M
. De : Andy Bauer andy.ba...@kitware.com À : R M mlok...@yahoo.fr Cc : paraview@paraview.org Envoyé le : Mar 12 octobre 2010, 19h 13min 16s Objet : Re: [Paraview] How to add vector/scalar field as attributes to a vtkPointSet (vtkPolyData, ...)? For the velocity array you'll need to set

[Paraview] Paraview and temporal data set cache

2010-10-29 Thread R M
Hello, I develop a reader that process a format describing geometry, attributes and temporals data. When I load a file in paraview and that I ask for a specific time step, I can trace the call and I see that a RequestData is done. So, for each request data, my output contains the geometry,

[Paraview] Re : Paraview and temporal data set cache

2010-10-29 Thread R M
I can ask my self. I have just discover that we can set the cache geometry cache in the Paraview Edit/Settings. Sorry for the inconvenience. De : R M mlok...@yahoo.fr À : paraview@paraview.org Envoyé le : Ven 29 octobre 2010, 16h 50min 38s Objet : [Paraview

[Paraview] Problem with plugin reader and GUI selection

2010-11-15 Thread R M
Hello, I have a file format that contains arrays of scalars data (each array has a name) . What I would like to do is to choose the array I have selected and load it in paraview. ex: array 0 - name = temp_0 1.2 3.5 7.8 array 1 - name = temp_1 8.7 5.9 2.3 array 2 - name = temp_2 72

[Paraview] How to update GUI/paraview when data and time change in a reader ?

2010-11-24 Thread R M
Hi, Here’s my problems. I have a reader that load a geometry and some attributes (at the points). These attributes changed in the time and I can select one of them in a combo box (GUI in the reader). For example, I have 2 attributes «A» and «B». So In the reader, by default the first

[Paraview] Re : How to update GUI/paraview when data and time change in a reader ?

2010-11-25 Thread R M
of the previous attribute. So how can I correctly update the requested time steps of the vtk pipeline when I updarte time steps and time range of the vtk pipeline ? De : R M mlok...@yahoo.fr À : paraview@paraview.org Envoyé le : Mer 24 novembre 2010, 14h 49min

[Paraview] Re : Re : How to update GUI/paraview when data and time change in a reader ?

2010-11-25 Thread R M
? De : Biddiscombe, John A. biddi...@cscs.ch À : R M mlok...@yahoo.fr; paraview@paraview.org paraview@paraview.org Envoyé le : Jeu 25 novembre 2010, 15h 18min 42s Objet : RE: [Paraview] Re : How to update GUI/paraview when data and time change in a reader ? If the time values change

[Paraview] Re : Re : Re : How to update GUI/paraview when data and time change in a reader ?

2010-11-25 Thread R M
: R M mlok...@yahoo.fr; paraview@paraview.org paraview@paraview.org Envoyé le : Jeu 25 novembre 2010, 16h 12min 30s Objet : RE: Re : [Paraview] Re : How to update GUI/paraview when data and time change in a reader ? UPDATE_TIME STEPS is what is being requested from you. Are you sure yoy shouldn’t

[Paraview] Re : Re : Re : Re : How to update GUI/paraview when data and time change in a reader ?

2010-11-25 Thread R M
Thank you for your attention. I hope that someone could give me an answer ! De : Biddiscombe, John A. biddi...@cscs.ch À : R M mlok...@yahoo.fr; paraview@paraview.org paraview@paraview.org Envoyé le : Jeu 25 novembre 2010, 16h 27min 46s Objet : RE: Re : Re

[Paraview] BUG in vtkPVDataSetAttributesInformation on Linux ?

2010-11-29 Thread R M
Hi, I use paraview 3.9.0 on a Centos 5 32 bits and also Windows XP. Here' my problem. I have developed a plugin with temporal data and with windows XP it works. But under linux I have a crash of paraview during some time step change. In Debug I have the following error message:

[Paraview] Re : BUG in vtkPVDataSetAttributesInformation on Linux ?

2010-11-29 Thread R M
Your're right ! I was so used to test my files that I had forgotten to set a name to one of my arrays. Thanks ! De : Utkarsh Ayachit utkarsh.ayac...@kitware.com À : R M mlok...@yahoo.fr Cc : paraview@paraview.org Envoyé le : Lun 29 novembre 2010, 15h 35min

[Paraview] xml configuration for GUI plugins

2010-12-03 Thread R M
Hi, I have a plugin that draw some vector field data. To draw them, I have declared Proxy group=sources name=GlyphSource2D /, there is a widget with: 2D Glyph Glyph Type : Arrow Filled Center 0 0 0 Like in the Glyph plugin and that we select 2D Glyph I would like to know if it is possible in

[Paraview] How to add extra informations associated to a vtkPolyData ?

2010-12-07 Thread R M
Hi, Like the title says, I would like to add extra informations associated to a vtkPolyData (or vtkMultiBlockDataSet). I would like to add a simulationType (in the information associated to the vtkpolydata) that is a type of simulation (we have several ones) and a vtk filter will select the

[Paraview] Re : How to add extra informations associated to a vtkPolyData ?

2010-12-07 Thread R M
Thank you ! Exactly what I need. De : David Doria daviddo...@gmail.com À : David E DeMarle dave.dema...@kitware.com Cc : R M mlok...@yahoo.fr; paraview@paraview.org Envoyé le : Mar 7 décembre 2010, 15h 42min 44s Objet : Re: [Paraview] How to add extra

[Paraview] Update Progress bar in RequestInfo

2010-12-07 Thread R M
Hi, I have tested to update the paraview progress bar using UpdateProgress in RequestData. That works fine. But, in RequestInfo it doesn't work. Is it normal ? Is there a solution to update the progress bar of paraview in a RequestInfo ? I ask this because my data can be big and all required

[Paraview] Re : ANN: ParaView 3.10 branch VTK 5.8 branch

2010-12-07 Thread R M
Hello, Where can we get the 3.10 version ? I need to have the Cell Data to Point Data that crashs on the 3.9.0 win 32. it seems to be fixed in the 3.10 version - http://www.paraview.org/Bug/view.php?id=11520 Thank you. De : Dave Partyka

[Paraview] Re : RE How to create a c++ plugin using 2 filters (cell data to point data + streamtracer) ?

2010-12-09 Thread R M
It 's working :) Thanks a lot ! De : Stephane PLOIX stephane.pl...@edf.fr À : mlok...@yahoo.fr Cc : paraview@paraview.org Envoyé le : Jeu 9 décembre 2010, 16h 11min 04s Objet : RE [Paraview] How to create a c++ plugin using 2 filters (cell data to point data

[Paraview] Bug with CellDataToPointData and vtkMultiBlockDataSet ?

2010-12-10 Thread R M
Hi, I have a vtkMultiBlockDataSet object that contains several DataSet. I have added a Field Data to my vtkMultiBlockDataSet object. When I use the CellDataToPointData Filter on my vtkMultiBlockDataSet object the new vtkMultiBlockDataSet object created byt the CellDataToPointData Filter

[Paraview] Re : Bug with CellDataToPointData and vtkMultiBlockDataSet ?

2010-12-10 Thread R M
I have forgotten to say that I use the 3.9 version. De : R M mlok...@yahoo.fr À : paraview@paraview.org Envoyé le : Ven 10 décembre 2010, 10h 48min 51s Objet : [Paraview] Bug with CellDataToPointData and vtkMultiBlockDataSet ? Hi, I have

[Paraview] Re : Re : Bug with CellDataToPointData and vtkMultiBlockDataSet ?

2010-12-13 Thread R M
Hi, Sorry to disturb you again with this but can someone tell me if this behavior is normal or not ? Thank you for your attention. De : R M mlok...@yahoo.fr À : R M mlok...@yahoo.fr; paraview@paraview.org Envoyé le : Ven 10 décembre 2010, 14h 57min 56s

[Paraview] Re : Re : Re : Bug with CellDataToPointData and vtkMultiBlockDataSet ?

2010-12-13 Thread R M
Hi, I don't add the FieldData to the blocks but to the vtkMultiBlockDataSe that contains the blocks. De : Favre Jean jfa...@cscs.ch À : R M mlok...@yahoo.fr; paraview@paraview.org paraview@paraview.org Envoyé le : Lun 13 décembre 2010, 11h 52min 59s Objet

[Paraview] Problem - How to display informations in a plugin GUI ?

2010-12-15 Thread R M
Hi, I develop a plugin that and in its corresponding xml file, I have a doubleVectorProperty in which I would like to write the result of my filter and I don't want to make it editable. So, I am looking for some examples of doing this beacause I really don't know how to do this and that make a

[Paraview] How to hide a vtkDataArray from the GUI?

2010-12-20 Thread R M
Hi, I would like to hide a vtkDataArray from the GUI that I add to a vtkPolyData. It is used only for internal processing. In fact, it is a 3d vectors and I don't want to see it in the streamTracers vectors list. I have seen the GUI_HIDE static method but really don't know how to use it. So,

[Paraview] Re : How to hide a vtkDataArray from the GUI?

2010-12-20 Thread R M
Hi, Finally, I think I have found: myArray-GetInformation()-Set(vtkDoubleArray::GUI_HIDE(), 1); But, The array is still in the attribute list of Paraview but not in the list of the streamTracer. De : R M mlok...@yahoo.fr À : paraview@paraview.org Envoyé le

[Paraview] Re : Problem - How to display informations in a plugin GUI ?

2010-12-20 Thread R M
is always NULL. But I can have the good result. So, what's wrong with my code ? Why the widget doesn't appear in the GUI plugin in Paraview ? Thank you for your attention and your advice. De : R M mlok...@yahoo.fr À : paraview@paraview.org Envoyé le : Mer 15

[Paraview] Re : Re : Problem - How to display informations in a plugin GUI ?

2010-12-20 Thread R M
Hi, The tutorial works fine :) It was my bad... But, I would like to know if there's an easier way for doing this display ? De : R M mlok...@yahoo.fr À : R M mlok...@yahoo.fr; paraview@paraview.org Envoyé le : Lun 20 décembre 2010, 17h 22min 57s Objet : Re

[Paraview] Multiple selections: points and cells

2011-01-03 Thread R M
Hi, I have seen thaht we can select cells or points but not cells and points (or points and cell) and have them display in Paraview GUI. So, I would like to know if it is possible to have selected cells and points at the same time in paraview ? Thanks !

[Paraview] Re : Multiple selections: points and cells

2011-01-05 Thread R M
. De : Utkarsh Ayachit utkarsh.ayac...@kitware.com À : R M mlok...@yahoo.fr Cc : paraview@paraview.org Envoyé le : Lun 3 janvier 2011, 20h 28min 43s Objet : Re: [Paraview] Multiple selections: points and cells Currently, it is not possible to have cells and points selected at the same time. Utkarsh

[Paraview] Re : Re : Multiple selections: points and cells

2011-01-06 Thread R M
So, to explain my probllem, I want to select cells and then points on a geometry. No one can tell me if such a selection tool is possible ? Otherwise, how could I contourn this problem ? Thank you for ideas ! De : R M mlok...@yahoo.fr À : Utkarsh Ayachit

[Paraview] How to set a dataset unselectable and in wireframe ?

2011-01-07 Thread R M
Hi, I have a plugin reader that makes several vtkUnstructuredGurid outputs. I have seen that in object inspector (paraview) we can make an object unselectable and render it in wireframe... I would like to know if it 's possible to directly set my ouput vtkUnstructuredGrid objects with such

[Paraview] Paraview custom application and plugin loading problem

2011-07-12 Thread R M
Hello, I use Paraview 3.10 (32 bits) on Windows and Linux and i have developped a custom paraview application and also some customs plugins. Using Paraview, I can use my customs plugins but in my custom application I can't load them. I have put them in a Plugins directory which is near the

[Paraview] Re : Paraview custom application and plugin loading problem

2011-07-12 Thread R M
in my custom application CMakeLists.txt file. All my plugins are loaded but I have to set them at the same level of the executable. But I would like to have them in the plugins directory. Thank you. De : Paul Edwards paul.m.edwa...@gmail.com À : R M mlok

[Paraview] Re : Re : Paraview custom application and plugin loading problem

2011-07-12 Thread R M
I can'f find LoadPluginsFromPath in my 3.10.1 version (the last release). Is it in the dev branch ? De : Paul Edwards paul.m.edwa...@gmail.com À : R M mlok...@yahoo.fr Cc : paraview@paraview.org Envoyé le : Mar 12 juillet 2011, 14h 33min 21s Objet : Re: Re

[Paraview] vtkHardwareSelection on vtkUnstructuredGrid

2011-10-21 Thread R M
Hello,  Here's my problem, I want to select cells from vtkUnstructuredGrid using vtkHardwareSelector but this does not work. I have seen on this  link http://www.vtk.org/doc/nightly/html/classvtkHardwareSelector.html#details  that If you need to select other data types, consider using

[Paraview] Re : [vtkusers] vtkHardwareSelection on vtkUnstructuredGrid

2011-10-21 Thread R M
So, since I have not yet find any solution, my question is: what vtkMapper should I use to display vtkMultiBlockDataSet of unstructuredGrid in order to select cells or points and extract this selection ? Thank you De : R M mlok...@yahoo.fr À : paraview