Re: [Paraview] cvs version of paraview not installing client

2009-12-11 Thread Ricardo Reis
Carrie you can still run it from the install dir... Ricardo Reis 'Non Serviam' PhD candidate @ Lasef Computational Fluid Dynamics, High Performance Computing, Turbulence http://www.lasef.ist.utl.pt Cultural Instigator @ Rádio Zero http://www.radiozero.pt Keep them Flying! Ajude a/

Re: [Paraview] spread sheet view not working?

2009-12-11 Thread David Doria
On Mon, Dec 7, 2009 at 10:34 AM, Utkarsh Ayachit wrote: > I've committed a fix for this issue. > > Utkarsh Utkarsh, The spreadsheet view is more functional now, but it still doesn't seem to work properly. Here is the procedure: 1) Load a vtp file with points and vertices 2) GenerateIds for the

[Paraview] Proposed functionality - point ID balloons

2009-12-11 Thread David Doria
Would it be possible to make a mode where when you hover over (or click on?) a point its ID (index) pops up in a balloon? I typically use the spreadsheet view to get a points ID, but this seems like using a sledge hammer to kill a fly. This seems like a very common operation that could be a bit eas

Re: [Paraview] spread sheet view not working?

2009-12-11 Thread Utkarsh Ayachit
David, I couldn't reproduce this. Try with a simple Sphere. Can you still reproduce it? Utkarsh On Fri, Dec 11, 2009 at 7:42 AM, David Doria wrote: > On Mon, Dec 7, 2009 at 10:34 AM, Utkarsh Ayachit > wrote: >> I've committed a fix for this issue. >> >> Utkarsh > > Utkarsh, > > The spreadsheet

Re: [Paraview] missing eye icon to turn visibility ON and OFF

2009-12-11 Thread Utkarsh Ayachit
I've committed a fix for this. /cvsroot/ParaView3/ParaView3/Qt/Components/pqPipelineModel.cxx,v <-- Qt/Components/pqPipelineModel.cxx new revision: 1.31; previous revision: 1.30 Utkarsh On Thu, Dec 10, 2009 at 4:22 PM, Favre Jean wrote: > Hello > > I have a reader creating 3 output ports (1

[Paraview] Filter input types

2009-12-11 Thread Fred Fred
I wrote a filter inherited from vtkPolyDataAlgorithm. As far as I have understood, such a filter is supposed to produce a vtkPolyData but may use any kind of dataset as input. The problem is I get an error because my input is an ImageData set while a PolyData is expected. Any idea of what I miss

Re: [Paraview] Filter input types

2009-12-11 Thread Jérôme
Hi Fred, Quoting from the vtkPolyDataAlgorithm doc: "This class also provides a FillInputPortInfo method that by default says that all inputs will be PolyData. If that isn't the case then please override this method in your subclass." You will find a lot of VTK classes that override the FillInput

[Paraview] Parallel Data Redistribution

2009-12-11 Thread Biddiscombe, John A.
I have a filter pipeline which reads N blocks from disk, this works fine on N processors. I now wish to subdivide those N blocks (using a custom filter) to produce new data which will consist of M blocks - where M >> N. I wish to run the algorithm on M processors and have the piece information

Re: [Paraview] Parallel Data Redistribution

2009-12-11 Thread Berk Geveci
What is the data type? vtkRedistributePolyData and its subclasses do this for polydata. It can do load balancing (where you can specify a weight for each processor) as well. -berk On Fri, Dec 11, 2009 at 9:59 AM, Biddiscombe, John A. wrote: > I have a filter pipeline which reads N blocks from di

Re: [Paraview] Parallel Data Redistribution

2009-12-11 Thread Biddiscombe, John A.
Berk The data will be UnstructuredGrid for now. Multiblock, but actually, I don't really care what each block is, only that I accept one block on each of N processes, split it into more pieces, and the next filter accepts one (or more if the numbers don't match up nicely) blocks and process the

Re: [Paraview] Parallel Data Redistribution

2009-12-11 Thread Berk Geveci
It sounds like M is equal to the number of processors (pipelines) and M >> N. Is that correct? -berk On Fri, Dec 11, 2009 at 10:40 AM, Biddiscombe, John A. wrote: > Berk > > The data will be UnstructuredGrid for now. Multiblock, but actually, I don't > really care what each block is, only that

Re: [Paraview] Proposed functionality - point ID balloons

2009-12-11 Thread Berk Geveci
We have thought about this a bit in the past and we think that it is a great idea. Implementing it efficiently on all modes ParaView supports is not trivial though. We would still like to do it at one point. -berk On Fri, Dec 11, 2009 at 7:47 AM, David Doria wrote: > Would it be possible to make

Re: [Paraview] spread sheet view not working?

2009-12-11 Thread David Doria
On Fri, Dec 11, 2009 at 9:31 AM, Utkarsh Ayachit wrote: > David, > > I couldn't reproduce this. Try with a simple Sphere. Can you still reproduce > it? > > Utkarsh It works properly with a sphere source. Try it with these points though: http://rpi.edu/~doriad/Paraview_List/Selection/2DTriangle.

[Paraview] Calculator and Python

2009-12-11 Thread Dominic Jennewein
Hello, I'm trying to programm the Calculator with the help of Python to automate the pipeline. Isn't it possible to see the changes in the GUI? I tried it like this: calc=Calculator() calc.Function='Normals.U' #Pointproduct of two Vectors U and Normals calc.ResultArrayName='newResult' calc.Replac

Re: [Paraview] spread sheet view not working?

2009-12-11 Thread Utkarsh Ayachit
Odd, works fine for me. Are you sure you are looking at the same "Generate Ids" source in the spreadsheet view? Make sure the same source is visible in both the views. Utkarsh On Fri, Dec 11, 2009 at 11:33 AM, David Doria wrote: > On Fri, Dec 11, 2009 at 9:31 AM, Utkarsh Ayachit > wrote: >> Dav

Re: [Paraview] spread sheet view not working?

2009-12-11 Thread David Doria
On Fri, Dec 11, 2009 at 1:35 PM, Utkarsh Ayachit wrote: > Odd, works fine for me. > Are you sure you are looking at the same "Generate Ids" source in the > spreadsheet view? Make sure the same source is visible in both the > views. > > Utkarsh Hm, it works if I generate the Ids then save the resu

Re: [Paraview] Parallel Data Redistribution

2009-12-11 Thread Biddiscombe, John A.
Berk > It sounds like M is equal to the number of processors (pipelines) and > M >> N. Is that correct? Yes, That's the idea. N blocks, broken (in place) into M new blocks, then fanned out to the M processes downstream where they can be processed separately . If it were on a single node, then e

[Paraview] How to push a value to the ServerManager so it gets pushed down to the Server

2009-12-11 Thread Michael Jackson
In my ServerManager XML file I have the following: And in my Client GUI code (which extends pqLoadedFormObjectPanel) I have the following code: vtkSMProperty* smProperty = this->proxy()- >GetProperty("ActiveDimension"); if (NULL == smProperty) { DebugTrace(<< "SMProperty

Re: [Paraview] Parallel Data Redistribution

2009-12-11 Thread Berk Geveci
I would have the reader (most parallel readers do this) generate empty data on all processes of id >= N. Then your filter can redistribute from those N processes to all M processes. I am pretty sure RedistributePolyData can do this for polydata as long as you set the weight to 1 on all processes. D

Re: [Paraview] How to push a value to the ServerManager so it gets pushed down to the Server

2009-12-11 Thread Utkarsh Ayachit
Are you forgetting a this->proxy()->UpdateVTKObjects() call after you have changed the value? Utkarsh On Fri, Dec 11, 2009 at 4:23 PM, Michael Jackson wrote: > In my ServerManager XML file I have the following: > >          name="ActiveDimension" >      command="SetActiveDimension" >      number

Re: [Paraview] How to push a value to the ServerManager so it gets pushed down to the Server

2009-12-11 Thread Michael Jackson
Yes, I did not know about that, but adding it still did not help. -- Mike Jackson On Dec 11, 2009, at 5:02 PM, Utkarsh Ayachit wrote: Are you forgetting a this->proxy()->UpdateVTKObjects() call after you have changed the value? Utkarsh On Fri, Dec 11, 2009 at 4:23 PM, Michael Jackson wrote

Re: [Paraview] holes in distributed polydata

2009-12-11 Thread Moreland, Kenneth
That was not intended to be a solution, but rather a diagnostic. My guess is that there are precision errors in the rasterization when the viewport is shifted. Could you restore vtkIceTRenderManager and try the attached patch to IceT? -Ken On 12/10/09 12:26 PM, "burlen" wrote: Hi Ken, it

Re: [Paraview] How to push a value to the ServerManager so it gets pushed down to the Server

2009-12-11 Thread Utkarsh Ayachit
Why do you have the "information_only" attribute ? That's used only for properties whose value are obtained from the server -side and are never pushed "to" the server. Simply remove that attribute, and it should work -- I think. Utkarsh On Fri, Dec 11, 2009 at 5:12 PM, Michael Jackson wrote: >

Re: [Paraview] How to push a value to the ServerManager so it gets pushed down to the Server

2009-12-11 Thread Michael Jackson
Well, That helped. At least something is getting set on the server side now. Copy-Paste error. Doh. Alas, the value getting set is not the correct value. _ Mike Jackson mike.jack...@bluequartz.net BlueQuartz Software