Re: [Paraview] Writer example

2008-09-08 Thread Renato N. Elias
Hi Raphael, it's Renato. This linking errors seem that CMake is not finding your ParaView build dir, or you have a project mismatch. Note that if you're building a "Release" ParaView you must also build a "Release" plugin project. Cheers Renato. Rafael March wrote: Hum... thanks, Mike,

Re: [Paraview] Relocatable plugins on ParaView CVS for Mac?

2008-09-08 Thread Mike Jackson
This post pretty much explains everything. BUT the solution used is OS 10.5 ONLY as it would seem so those with 10.4 may be stuck. http://www.codeshorts.ca/2007/nov/01/leopard-linking-making-relocatable-libraries-movin Just depends how far back in OS X the ParaView developers want to support

Re: [Paraview] Writer example

2008-09-08 Thread Rafael March
Hum... thanks, Mike, it seems better now ! Just 10 errors ! :) Take a look at them: Error    11    error LNK2001: unresolved external symbol "private: virtual char const * __thiscall vtkExampleTiffWriter::GetClassNameInternal(void)const " ([EMAIL PROTECTED]@@EBEPBDXZ)    vtkExampleTiffWriter.o

Re: [Paraview] Writer example

2008-09-08 Thread Mike Jackson
Try putting the following at the top of the .h file: #ifndef _MXA_DLL_EXPORT_H_ #define _MXA_DLL_EXPORT_H_ /* Cmake will define MXADataModel_EXPORTS on Windows when it configures to build a shared library. If you are going to use another build system on windows or create the visual studio proje

Re: [Paraview] Relocatable plugins on ParaView CVS for Mac?

2008-09-08 Thread Mike Jackson
Um No. Don't do that. If you remove any type of path from the "install_name" then OS X will look in the current directory for libraries. It is my understanding that the ParaView devs plan to put the libraries in Paraview.app/Contents/lib or somewhere like that. I still can not get an "insta

Re: [Paraview] Writer example

2008-09-08 Thread Rafael March
Hi Sam, yes, I built Paraview from source, and I'm using CMake 2.6. I am able to cmake the writer, but when I try to build it under VS2005, I get 17 errors; all LNK: unresolved externals. Sam, have you another writer example, different from the Tiff one in the CVS version of Paraview ? Thank

Re: [Paraview] Animation. Second view of a field variable. How to format the file.

2008-09-08 Thread David E DeMarle
You could save K(t) as field data. Then you can extract the zero'th entry in the K array (which has just one element) and plot that over time. A vts file with field data in it looks something like this... 26.1 [snip] On Mon, Sep 8, 2008 at 12:30 AM, Christer Gusta

Re: [Paraview] Writer example

2008-09-08 Thread Samuel Crow
Hello Rafael, Did you build ParaView from the source to link against? What version of CMake are you using? --Sam --- On Mon, 9/8/08, Rafael March <[EMAIL PROTECTED]> wrote: > From: Rafael March <[EMAIL PROTECTED]> > Subject: Re: [Paraview] Writer example > To: paraview@paraview.org > Date: M

Re: [Paraview] Writer example

2008-09-08 Thread Rafael March
Hi, unfortunatelly, I couldn't compile it. Got 17 "error LNK:unresolved external symbol" like errors. Have any idea what's wrong ? Do you have another example ? Thanks ! Rafael March. --- On Mon, 9/8/08, Mike Jackson <[EMAIL PROTECTED]> wrote: From: Mike Jackson <[EMAIL PROTECTED]> Subject: Re

Re: [Paraview] pvclient on Mac OS

2008-09-08 Thread Robert Kubrick
Why not an intercomm, isn't MPI (RMA in particular comes to mind) the best method to transfer large amounts of data between a client and the root node? On Sep 8, 2008, at 9:55 AM, Utkarsh Ayachit wrote: It opens a socket connection to the root node. Utkarsh Robert Kubrick wrote: Thanks. H

Re: [Paraview] Relocatable plugins on ParaView CVS for Mac?

2008-09-08 Thread clinton
Would it work to strip all the @executable_path's out, and fix the id of it, so you get something like this: libLabReaderGUIPlugin.dylib: libLabReaderGUIPlugin.dylib (compatibility version 0.0.0, current version 0.0.0) libpqComponents.dylib (compatibility version 0.0.0, current

Re: [Paraview] Relocatable plugins on ParaView CVS for Mac?

2008-09-08 Thread Samuel Crow
Hello, The plugins are in paraview.app/Contents/MacOS/plugins/ and the output for otool -L is as follows: libLabReaderGUIPlugin.dylib: @executable_path/plugins/libLabReaderGUIPlugin.dylib (compatibility version 0.0.0, current version 0.0.0) @executable_path/libpqComponents.dylib

Re: [Paraview] ADINA ---> ParaVIew

2008-09-08 Thread Berk Geveci
http://www.ensight.com/downloads/cat_view-5.html 2008/9/8 Prof. Cirrottola <[EMAIL PROTECTED]>: > Hi, > first of all, I appreciate your answer. > I think it would be useful to form a discussion forum (I suggest to create a > sub-forum of Paraview forum). > But, by a practical point of view, I don

Re: [Paraview] Relocatable plugins on ParaView CVS for Mac?

2008-09-08 Thread Mike Jackson
Couple things come to mind that need to be checked. Where exactly in relation to the paraview.app bundle are you trying to load the plugins from? Also, what is the output of running "otool -L [plugin]". I have some ideas but let's see the answers to those first.. _

Re: [Paraview] Access Grid vs Paraview

2008-09-08 Thread Thomas D. Uram
Hi Val: Can you say more about what you have in mind for your plugin? If it's more related to AG than ParaView, we can discuss it off the mailing list. Tom Uram On 9/8/08 3:25 AM, lee shi yun wrote: Hi, Anyone know how to do some plugin for Access Grid and Paraview??? Thanks!! Regar

[Paraview] Relocatable plugins on ParaView CVS for Mac?

2008-09-08 Thread Samuel Crow
Hello again, I've written a BASH script that translates the paths of any libraries that have been accessing from the ParaView executable to use @executable_path but unfortunately the GUI plugins don't work on the destination computer. I am using the RPath feature of MaxOSX to generate the .Dyl

[Paraview] Writer example

2008-09-08 Thread Rafael March
Dear friends, I'm trying to create my own writer, and I'm having some problems. I wonder if anyone could send me a source code with an writer example, so that I can use it as a template. I know that there is one called MyTiffWriter under Examples/Plugin/Writer, in the latest cvs version of Par

Re: [Paraview] Paraview Plugin

2008-09-08 Thread Samuel Crow
Hello Lee Shi Yun, Any plugins that you make must be built from the source code. Plugin source codes are upward compatible so you can build a plugin for 3.2.3 and it will recompile to work on 3.3.1 . To build a plugin from source code requires that you have built ParaView from source code as

Re: [Paraview] pvclient on Mac OS

2008-09-08 Thread Moreland, Kenneth
I suggest consulting the ParaView wiki for more information on how to set up ParaView client/server connections, starting with this page: http://www.paraview.org/Wiki/Starting_the_server -Ken On 9/8/08 7:55 AM, "Utkarsh Ayachit" <[EMAIL PROTECTED]> wrote: > It opens a socket connection to th

Re: [Paraview] pvclient on Mac OS

2008-09-08 Thread Utkarsh Ayachit
It opens a socket connection to the root node. Utkarsh Robert Kubrick wrote: Thanks. How does the server connection work, does the client open an MPI intercomm to node 0 on the server or just a flat socket connection? On Sep 8, 2008, at 8:07 AM, Utkarsh Ayachit wrote: Since ParaView 3.0 ther

Re: [Paraview] pvclient on Mac OS

2008-09-08 Thread Robert Kubrick
Thanks. How does the server connection work, does the client open an MPI intercomm to node 0 on the server or just a flat socket connection? On Sep 8, 2008, at 8:07 AM, Utkarsh Ayachit wrote: Since ParaView 3.0 there's no pvclient executable. You simply use the paraview executable to connect

Re: [Paraview] pvclient on Mac OS

2008-09-08 Thread Utkarsh Ayachit
Since ParaView 3.0 there's no pvclient executable. You simply use the paraview executable to connect either to a remote server(to act like the old pvclient) or connect to a builtin server (similar to the old standalone paraview) Utkarsh Robert Kubrick wrote: Greetings, I can't find the client

Re: [Paraview] ADINA ---> ParaVIew

2008-09-08 Thread Prof. Cirrottola
Hi, first of all, I appreciate your answer. I think it would be useful to form a discussion forum (I suggest to create a sub-forum of Paraview forum). But, by a practical point of view, I don't believe that a neutral format can be a good idea: in fact, I would like to write only one translator

[Paraview] Access Grid vs Paraview

2008-09-08 Thread lee shi yun
Hi, Anyone know how to do some plugin for Access Grid and Paraview??? Thanks!! Regards, Val _ Get in touch with your inner athlete. Take the quiz. http://yourinnerathlete.windowslive.com?locale=en-my&ocid=TXT_TAGLM_WLYIA_takequi