<div dir="ltr">Hi everyone,<div><br></div><div>I am in the field of atomic simulation. </div><div>Paraview can display atoms beautifully, but I currently cannot find a way to draw bonds between atoms within certain distance. </div>
<div>Can anyone help me with this? Thanks very much.</div><div><br></div><div style>Best Regards,</div><div style>LJ</div><div><div><div class="gmail_extra"><br><br><div class="gmail_quote">On Thu, Oct 3, 2013 at 11:09 AM,  <span dir="ltr">&lt;<a href="mailto:paraview-request@paraview.org" target="_blank">paraview-request@paraview.org</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Send ParaView mailing list submissions to<br>
        <a href="mailto:paraview@paraview.org">paraview@paraview.org</a><br>
<br>
To subscribe or unsubscribe via the World Wide Web, visit<br>
        <a href="http://www.paraview.org/mailman/listinfo/paraview" target="_blank">http://www.paraview.org/mailman/listinfo/paraview</a><br>
or, via email, send a message with subject or body &#39;help&#39; to<br>
        <a href="mailto:paraview-request@paraview.org">paraview-request@paraview.org</a><br>
<br>
You can reach the person managing the list at<br>
        <a href="mailto:paraview-owner@paraview.org">paraview-owner@paraview.org</a><br>
<br>
When replying, please edit your Subject line so it is more specific<br>
than &quot;Re: Contents of ParaView digest...&quot;<br>
<br>
<br>
Today&#39;s Topics:<br>
<br>
   1. Re: My own filter as part of pipeline for coprocessing raises<br>
      &quot;name not defined&quot; error (Andy Bauer)<br>
<br>
<br>
----------------------------------------------------------------------<br>
<br>
Message: 1<br>
Date: Thu, 3 Oct 2013 11:09:15 -0400<br>
From: Andy Bauer &lt;<a href="mailto:andy.bauer@kitware.com">andy.bauer@kitware.com</a>&gt;<br>
Subject: Re: [Paraview] My own filter as part of pipeline for<br>
        coprocessing raises &quot;name not defined&quot; error<br>
To: Hong Yi &lt;<a href="mailto:hongyi@renci.org">hongyi@renci.org</a>&gt;<br>
Cc: &quot;<a href="mailto:paraview@paraview.org">paraview@paraview.org</a>&quot; &lt;<a href="mailto:paraview@paraview.org">paraview@paraview.org</a>&gt;<br>
Message-ID:<br>
        &lt;<a href="mailto:CAMaOp%2BF1nzKJfHzZ9FvNOjmSioFbQcsiTcQqxBc7ygm8szkJkA@mail.gmail.com">CAMaOp+F1nzKJfHzZ9FvNOjmSioFbQcsiTcQqxBc7ygm8szkJkA@mail.gmail.com</a>&gt;<br>
Content-Type: text/plain; charset=&quot;windows-1252&quot;<br>
<br>
Hmm, I would check the link line for your adaptor and for creating the<br>
executable to see if the plugin library is included there. Something else<br>
you can try is explicitly create the plugin&#39;s filter in the adaptor code to<br>
make sure that it is linked in properly.<br>
<br>
Regards,<br>
Andy<br>
<br>
<br>
On Thu, Oct 3, 2013 at 10:41 AM, Hong Yi &lt;<a href="mailto:hongyi@renci.org">hongyi@renci.org</a>&gt; wrote:<br>
<br>
&gt;  Hi Andy,****<br>
&gt;<br>
&gt; ** **<br>
&gt;<br>
&gt; That is exactly what I did, and I also modified CMakeLists.txt to link<br>
&gt; ${PARAVIEW_PLUGINLIST}  to the target via target_link_libraries. However,<br>
&gt; the symbol ?pv_plugin_instance_SMVorticity? is undefined in the built<br>
&gt; target static library, while following the same process to build pvbatch<br>
&gt; and pvpython executable works, i.e., the same plugin symbol is defined in<br>
&gt; built pvpython executable. Since it is static linking, I know linking order<br>
&gt; matters, but have not got it to work by adjusting linking orders. Let me<br>
&gt; know if you have ideas on what I could try to figure out and resolve this<br>
&gt; issue.****<br>
&gt;<br>
&gt; ** **<br>
&gt;<br>
&gt; Thanks,****<br>
&gt;<br>
&gt; ** **<br>
&gt;<br>
&gt; Hong****<br>
&gt;<br>
&gt; ** **<br>
&gt;<br>
&gt; ** **<br>
&gt;<br>
&gt; *From:* Andy Bauer [mailto:<a href="mailto:andy.bauer@kitware.com">andy.bauer@kitware.com</a>]<br>
&gt; *Sent:* Thursday, October 03, 2013 10:19 AM<br>
&gt;<br>
&gt; *To:* Hong Yi<br>
&gt; *Cc:* David E DeMarle; <a href="mailto:paraview@paraview.org">paraview@paraview.org</a><br>
&gt; *Subject:* Re: [Paraview] My own filter as part of pipeline for<br>
&gt; coprocessing raises &quot;name not defined&quot; error****<br>
&gt;<br>
&gt; ** **<br>
&gt;<br>
&gt; Hi Hong,****<br>
&gt;<br>
&gt; There won&#39;t be a separate library created for Python wrapping your plugin<br>
&gt; for doing ParaView. Did you add in the following to your adaptor:****<br>
&gt;<br>
&gt; #ifndef BUILD_SHARED_LIBS****<br>
&gt;<br>
&gt; #include &quot;pvStaticPluginsInit.h&quot;****<br>
&gt;<br>
&gt; #endif****<br>
&gt;<br>
&gt;<br>
&gt; And then in the adaptor initialization step you should have something in<br>
&gt; it like:****<br>
&gt;<br>
&gt; #ifndef BUILD_SHARED_LIBS****<br>
&gt;<br>
&gt; paraview_static_plugins_init();****<br>
&gt;<br>
&gt; #endif****<br>
&gt;<br>
&gt; If that doesn&#39;t work then it will probably take a bit of tinkering to<br>
&gt; figure out what&#39;s wrong.<br>
&gt;<br>
&gt; Regards,<br>
&gt; Andy****<br>
&gt;<br>
&gt; ** **<br>
&gt;<br>
&gt; On Wed, Oct 2, 2013 at 12:28 PM, Hong Yi &lt;<a href="mailto:hongyi@renci.org">hongyi@renci.org</a>&gt; wrote:****<br>
&gt;<br>
&gt; Thanks for the helpful info, Andy. I looked at the link and followed the<br>
&gt; code change Burlen posted to add the static linked plugin initialization<br>
&gt; into pvbatch and pvpython and that worked fine. Now pvbatch and pypthon all<br>
&gt; have my filter plugin statically loaded. I still got the ?name not defined?<br>
&gt; error when coprocessing parses the pipeline though. I believe the problem<br>
&gt; remains because there is still no python wrapped proxy to my filter since<br>
&gt; there is no change to lib\site-packages after I add the static linked<br>
&gt; plugin initialization into pybatch and pvpython. To make sure I am on the<br>
&gt; right track for my further investigation, I am hoping to get answers to a<br>
&gt; couple of my further questions below:****<br>
&gt;<br>
&gt;  ****<br>
&gt;<br>
&gt; 1.       What is the right way to go to have the proxy to my filter<br>
&gt; Python wrapped? How can I verity I have the proxy to my filter Python<br>
&gt; wrapped? Is it true that the Python-wrapped proxy to my filter should show<br>
&gt; up in some python file in lib\site-packages if the filter is indeed<br>
&gt; python-wrapped?  ****<br>
&gt;<br>
&gt; 2.       I made similar changes to CPythonAdaptorAPI.cxx and<br>
&gt; CMakeLists.txt as I did to pvpthon and pvbatch to load and init static<br>
&gt; plugin in function coprocessorinitializewithpython() hoping to have plugin<br>
&gt; loaded when doing coprocessing linked to simulation, however, I still have<br>
&gt; the symbol ?pv_plugin_instance_SMVorticity? undefined in built<br>
&gt; PythonCatalyst static lib while the plugin symbol is indeed defined in<br>
&gt; pvpython with the same code changes. Just to confirm, does the plugin need<br>
&gt; to be loaded in Catalyst initialization in order to use it in a<br>
&gt; coprocessing pipeline? In other words, to get my plugin working in catalyst<br>
&gt; linked to simulation, I need to resolve two problems: (1) get the plugin<br>
&gt; statically loaded in Catalyst initialization; (2) get the proxy to the<br>
&gt; plugin Python wrapped and show up in some python file in lib\site-packages.<br>
&gt; Is this true?****<br>
&gt;<br>
&gt;  ****<br>
&gt;<br>
&gt; Yes, I know the gradient of unstructured data set filter can compute<br>
&gt; vorticity, which I referenced to write this custom vorticity filter to make<br>
&gt; it fit our needs better with better performance. I did try to use the<br>
&gt; genetic gradient filter to compute vorticity for coprocessing, but it<br>
&gt; raises a segmentation fault after outputting several images. Will have to<br>
&gt; debug and investigate more to find out more on that.****<br>
&gt;<br>
&gt;  ****<br>
&gt;<br>
&gt; Thanks,****<br>
&gt;<br>
&gt; Hong****<br>
&gt;<br>
&gt;  ****<br>
&gt;<br>
&gt; *From:* Andy Bauer [mailto:<a href="mailto:andy.bauer@kitware.com">andy.bauer@kitware.com</a>]<br>
&gt; *Sent:* Tuesday, October 01, 2013 2:19 PM****<br>
&gt;<br>
&gt;<br>
&gt; *To:* Hong Yi<br>
&gt; *Cc:* David E DeMarle; <a href="mailto:paraview@paraview.org">paraview@paraview.org</a><br>
&gt; *Subject:* Re: [Paraview] My own filter as part of pipeline for<br>
&gt; coprocessing raises &quot;name not defined&quot; error****<br>
&gt;<br>
&gt;  ****<br>
&gt;<br>
&gt; Hi Hong,****<br>
&gt;<br>
&gt; I don&#39;t think you want to do VTK Python wrapping of your class. What you<br>
&gt; want is to have the proxy to the filter Python wrapped such that it&#39;s<br>
&gt; available when you import paraview.simple. This is what&#39;s needed for<br>
&gt; Catalyst Python pipelines. I don&#39;t think you&#39;re properly initializing the<br>
&gt; plugins from the previous directions I sent. You may want to look at<br>
&gt; <a href="http://public.kitware.com/pipermail/paraview-developers/2013-September/002499.html" target="_blank">http://public.kitware.com/pipermail/paraview-developers/2013-September/002499.html</a><br>
&gt; ****<br>
&gt;<br>
&gt; As a side note, the gradient of unstructured data set filter can compute<br>
&gt; vorticity as well. It does require a vtkDataArray with three components to<br>
&gt; use though. ****<br>
&gt;<br>
&gt; Regards,<br>
&gt; Andy****<br>
&gt;<br>
&gt;  ****<br>
&gt;<br>
&gt; On Mon, Sep 30, 2013 at 5:06 PM, Hong Yi &lt;<a href="mailto:hongyi@renci.org">hongyi@renci.org</a>&gt; wrote:****<br>
&gt;<br>
&gt; Thanks, Andy. The CMakeLists.txt for my plugin is copied below with newly<br>
&gt; added lines for python wrapping in orange:<br>
&gt;<br>
&gt; -----------------------------<br>
&gt; if(NOT ParaView_SOURCE_DIR)<br>
&gt;   find_package(ParaView)<br>
&gt;   include(&quot;${PARAVIEW_USE_FILE}&quot;)<br>
&gt;   include (ParaViewPlugins)<br>
&gt; else()<br>
&gt;   # we&#39;re building from within ParaView Source.<br>
&gt; endif()<br>
&gt;<br>
&gt; include_directories(${VTK_INCLUDE_DIRS})<br>
&gt; include(wrap-python.cmake)<br>
&gt;<br>
&gt; # create a paraview plugin containing server manager xml and the server<br>
&gt; # manager classes to build<br>
&gt; # this plugin can be loaded on the server side<br>
&gt;<br>
&gt; ADD_PARAVIEW_PLUGIN(SMVorticity &quot;1.0&quot;<br>
&gt;   SERVER_MANAGER_XML VorticityFilter.xml<br>
&gt;   SERVER_MANAGER_SOURCES VorticityFilter.cxx)<br>
&gt;<br>
&gt; target_link_libraries(SMVorticity ${deps})<br>
&gt;<br>
&gt; if(VTK_WRAP_PYTHON)<br>
&gt;   wrap_python(SMVorticity &quot;${sources}&quot;)<br>
&gt; endif()<br>
&gt; -----------------------------<br>
&gt;<br>
&gt; The orange lines are added by following<br>
&gt; <a href="http://www.paraview.org/pipermail/paraview/2012-May/024855.html" target="_blank">http://www.paraview.org/pipermail/paraview/2012-May/024855.html</a> which<br>
&gt; works well and builds my filter and also wraps it in Python (i.e., it<br>
&gt; generates libSMVorticity.a and libSMVorticityPythonD.a). I have also<br>
&gt; verified the plugin is indeed loaded into pvserver and pvpython in paraview<br>
&gt; built bin directory.<br>
&gt;<br>
&gt; However, I still got &quot;name not defined&quot; error in coprocessing script when<br>
&gt; creating this filter by name &quot;VorticityOfUnstructuredDataSet&quot; in python<br>
&gt; script. I have a couple of specific questions I am currently investigating<br>
&gt; and hoping to get some inputs from experts in the list:<br>
&gt;<br>
&gt; 1. I am not sure where this name &quot;VorticityOfUnstructuredDataSet&quot;<br>
&gt; (exported by coprocessing script generator plugin) comes from, the only<br>
&gt; clue I can see is in plugin.cmake, where the plugin is specified with<br>
&gt; DESCRIPTION &quot;Vorticity Of Unstructured DataSet&quot; and in VorticityFilter.xml,<br>
&gt; where the plugin is given a label of &quot;Vorticity Of Unstructured DataSet.&quot;<br>
&gt; Should this name be defined somewhere such as in some python file in<br>
&gt; paraview python site-packages?<br>
&gt;<br>
&gt; 2. I did try to add PV_PLUGIN_IMPORT macros to the adaptor since I am<br>
&gt; using Catalyst, however, the plugin symbol &quot;pv_plugin_instance_SMVorticity&quot;<br>
&gt; is undefined in the adaptor static lib (the same plugin symbol is defined<br>
&gt; in pvserver), hence I got an undefined error when linking simulation code<br>
&gt; to the adaptor. I did try to add my plugin static lib (in which the plugin<br>
&gt; symbol is defined) to the adaptor target via target_link_libraries before<br>
&gt; linking to vtkPVPythonCatalyst, but that does not seem to take any effect.<br>
&gt; For some reason I am still investigating, my plugin lib does not get to<br>
&gt; link to the adaptor via target_link_libraries. What I did is to go to src<br>
&gt; directory in the cross target and modified CMakeLists.txt for<br>
&gt; PhastaAdaptor, then went to corresponding paraview-build directory, and did<br>
&gt; &quot;make clean&quot; followed by &quot;make&quot; to rebuild PhastaAdaptor lib. Is there<br>
&gt; something obvious that I did not do correctly?<br>
&gt;<br>
&gt; Thanks for any inputs!<br>
&gt;<br>
&gt; Hong****<br>
&gt;  ------------------------------<br>
&gt;<br>
&gt; *From:* Andy Bauer [<a href="mailto:andy.bauer@kitware.com">andy.bauer@kitware.com</a>]<br>
&gt; *Sent:* Friday, September 27, 2013 3:00 PM<br>
&gt; *To:* Hong Yi<br>
&gt; *Cc:* David E DeMarle; <a href="mailto:paraview@paraview.org">paraview@paraview.org</a>****<br>
&gt;<br>
&gt;<br>
&gt; *Subject:* Re: [Paraview] My own filter as part of pipeline for<br>
&gt; coprocessing raises &quot;name not defined&quot; error****<br>
&gt;<br>
&gt;  ****<br>
&gt;<br>
&gt; Can you share your plugin or at least the CMakeLists.txt for your plugin?<br>
&gt; Have you tried with any other plugins that get packaged with ParaView to<br>
&gt; see if they work?****<br>
&gt;<br>
&gt; If you&#39;re using Catalyst, I would suggest adding in the<br>
&gt; PV_PLUGIN_IMPORT_INIT macros to the adaptor.****<br>
&gt;<br>
&gt; Andy****<br>
&gt;<br>
&gt;  ****<br>
&gt;<br>
&gt; On Thu, Sep 26, 2013 at 3:40 PM, Hong Yi &lt;<a href="mailto:hongyi@renci.org">hongyi@renci.org</a>&gt; wrote:****<br>
&gt;<br>
&gt; Thanks! I did put my plugin inside ParaView/Plugins in the same way as<br>
&gt; other Plugins, and enabled it when building ParaView superbuild on Titan. I<br>
&gt; can see the static lib for the Plugin is built in paraview-build/lib<br>
&gt; directory. And yes, I did use a plugin and load it via Tools|Manage Plugins<br>
&gt; when creating python coprocessing script. However, it looks like my plugin<br>
&gt; is not loaded automatically even though it is built by ParaView superbuild.<br>
&gt; Perhaps I should still follow the link<br>
&gt; <a href="http://www.paraview.org/Wiki/ParaView/Plugin_HowTo#Plugins_in_Static_Applications" target="_blank">http://www.paraview.org/Wiki/ParaView/Plugin_HowTo#Plugins_in_Static_Applications</a> but<br>
&gt; I am having some difficulty in following the info in the link to do what is<br>
&gt; suggested. Specifically, to what file should I insert two macros? It does<br>
&gt; not sound right to insert them into my custom plugin cxx file. Where should<br>
&gt; I add two macros to get my custom filter plugin to be loaded and wrapper<br>
&gt; into python module? I see &quot;LoadPlugin&quot; function defined in simple.py to<br>
&gt; call servermanager.LoadPlugin(filename, remote) which I am thinking perhaps<br>
&gt; should be called to load my plugin before my python coprocessing script is<br>
&gt; executed, but not sure whether this is the case or not. ****<br>
&gt;<br>
&gt;  ****<br>
&gt;<br>
&gt; Thanks for any suggestions! ****<br>
&gt;<br>
&gt;  ****<br>
&gt;<br>
&gt; Hong****<br>
&gt;<br>
&gt;  ****<br>
&gt;<br>
&gt;  ****<br>
&gt;<br>
&gt; *From:* David E DeMarle [mailto:<a href="mailto:dave.demarle@kitware.com">dave.demarle@kitware.com</a>]<br>
&gt; *Sent:* Thursday, September 26, 2013 1:28 PM<br>
&gt; *To:* Andy Bauer<br>
&gt; *Cc:* Hong Yi; <a href="mailto:paraview@paraview.org">paraview@paraview.org</a><br>
&gt; *Subject:* Re: [Paraview] My own filter as part of pipeline for<br>
&gt; coprocessing raises &quot;name not defined&quot; error****<br>
&gt;<br>
&gt;  ****<br>
&gt;<br>
&gt; Utkarsh pointed out that you still need to follow<br>
&gt; <a href="http://www.paraview.org/Wiki/ParaView/Plugin_HowTo#Plugins_in_Static_Applications" target="_blank">http://www.paraview.org/Wiki/ParaView/Plugin_HowTo#Plugins_in_Static_Applications</a><br>
&gt; ****<br>
&gt;<br>
&gt; when the plugin is external to ParaView. If you put your plugin inside<br>
&gt; ParaView/Plugins, then it is done automatically.****<br>
&gt;<br>
&gt;<br>
&gt; ****<br>
&gt;<br>
&gt; David E DeMarle<br>
&gt; Kitware, Inc.<br>
&gt; R&amp;D Engineer<br>
&gt; 21 Corporate Drive<br>
&gt; Clifton Park, NY 12065-8662<br>
&gt; Phone: <a href="tel:518-881-4909" value="+15188814909">518-881-4909</a>****<br>
&gt;<br>
&gt;  ****<br>
&gt;<br>
&gt; On Thu, Sep 26, 2013 at 12:23 PM, David E DeMarle &lt;<br>
&gt; <a href="mailto:dave.demarle@kitware.com">dave.demarle@kitware.com</a>&gt; wrote:****<br>
&gt;<br>
&gt; I think that information is out of date. I believe that is done<br>
&gt; automatically now.****<br>
&gt;<br>
&gt;  ****<br>
&gt;<br>
&gt; Otherwise Andy is right. Putting the filter inside a plugin a good way to<br>
&gt; go. The plugin infrastructure will make it so that when you provide the XML<br>
&gt; that describes your vtk class, ParaView&#39;s build system will automatically<br>
&gt; wrap it into a proxy and python class so that ParaView will be able to use<br>
&gt; it.****<br>
&gt;<br>
&gt;  ****<br>
&gt;<br>
&gt; Also, I recommend trying it on a local static build first. That way the<br>
&gt; build time will be less and development will be quicker. Once you can load<br>
&gt; you plugin locally, then you should only have to compile on titan once.***<br>
&gt; *<br>
&gt;<br>
&gt;  ****<br>
&gt;<br>
&gt;<br>
&gt; ****<br>
&gt;<br>
&gt; David E DeMarle<br>
&gt; Kitware, Inc.<br>
&gt; R&amp;D Engineer<br>
&gt; 21 Corporate Drive<br>
&gt; Clifton Park, NY 12065-8662<br>
&gt; Phone: <a href="tel:518-881-4909" value="+15188814909">518-881-4909</a>****<br>
&gt;<br>
&gt;  ****<br>
&gt;<br>
&gt; On Wed, Sep 25, 2013 at 10:34 PM, Andy Bauer &lt;<a href="mailto:andy.bauer@kitware.com">andy.bauer@kitware.com</a>&gt;<br>
&gt; wrote:****<br>
&gt;<br>
&gt; Did you use a plugin to add in your custom filter when creating the Python<br>
&gt; co-processing script? I&#39;m not sure how plugins are &quot;loaded&quot; for static<br>
&gt; builds but you may want to look at<br>
&gt; <a href="http://www.paraview.org/Wiki/ParaView/Plugin_HowTo#Plugins_in_Static_Applications" target="_blank">http://www.paraview.org/Wiki/ParaView/Plugin_HowTo#Plugins_in_Static_Applications</a>.<br>
&gt; If that doesn&#39;t work, we&#39;ll have to figure out some other way to do it.***<br>
&gt; *<br>
&gt;<br>
&gt; Andy****<br>
&gt;<br>
&gt;  ****<br>
&gt;<br>
&gt;  ****<br>
&gt;<br>
&gt;  ****<br>
&gt;<br>
&gt;  ****<br>
&gt;<br>
&gt; On Wed, Sep 25, 2013 at 9:16 PM, Hong Yi &lt;<a href="mailto:hongyi@renci.org">hongyi@renci.org</a>&gt; wrote:****<br>
&gt;<br>
&gt;   Hello,<br>
&gt;<br>
&gt; I set up a pipeline that used a custom filter I developed and exported it<br>
&gt; as a python script for coprocessing. I have made sure the static library<br>
&gt; for my custom filter is built and available in paraview-build/lib<br>
&gt; directory, and I have also linked this custom filter static library along<br>
&gt; with Catalyst libs to the simulation code for coprocessing. However, when I<br>
&gt; run the simulation linked with ParaView coprocessing for in-situ<br>
&gt; visualization, I got &quot;NameError: name &#39;MyCustomizedFilterName&#39; is not<br>
&gt; defined&quot; error when the line of my customized filter in my python<br>
&gt; coprocessing script is read in for pipeline coprocessing. What should I do<br>
&gt; to get my custom filter wrapped in python so that it can be recognized and<br>
&gt; used as part of the python pipeline script for coprocessing? Any advice and<br>
&gt; suggestions are very much appreciated.<br>
&gt;<br>
&gt; Thanks,<br>
&gt;<br>
&gt; Hong****<br>
&gt;<br>
&gt;  ****<br>
&gt;<br>
&gt; _______________________________________________<br>
&gt; Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
&gt;<br>
&gt; Visit other Kitware open-source projects at<br>
&gt; <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
&gt;<br>
&gt; Please keep messages on-topic and check the ParaView Wiki at:<br>
&gt; <a href="http://paraview.org/Wiki/ParaView" target="_blank">http://paraview.org/Wiki/ParaView</a><br>
&gt;<br>
&gt; Follow this link to subscribe/unsubscribe:<br>
&gt; <a href="http://www.paraview.org/mailman/listinfo/paraview****" target="_blank">http://www.paraview.org/mailman/listinfo/paraview****</a><br>
&gt;<br>
&gt;   ****<br>
&gt;<br>
&gt;<br>
&gt; _______________________________________________<br>
&gt; Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
&gt;<br>
&gt; Visit other Kitware open-source projects at<br>
&gt; <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
&gt;<br>
&gt; Please keep messages on-topic and check the ParaView Wiki at:<br>
&gt; <a href="http://paraview.org/Wiki/ParaView" target="_blank">http://paraview.org/Wiki/ParaView</a><br>
&gt;<br>
&gt; Follow this link to subscribe/unsubscribe:<br>
&gt; <a href="http://www.paraview.org/mailman/listinfo/paraview****" target="_blank">http://www.paraview.org/mailman/listinfo/paraview****</a><br>
&gt;<br>
&gt;  ****<br>
&gt;<br>
&gt;  ****<br>
&gt;<br>
&gt;  ****<br>
&gt;<br>
&gt;  ****<br>
&gt;<br>
&gt; ** **<br>
&gt;<br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: &lt;<a href="http://www.paraview.org/pipermail/paraview/attachments/20131003/9f68cf01/attachment.htm" target="_blank">http://www.paraview.org/pipermail/paraview/attachments/20131003/9f68cf01/attachment.htm</a>&gt;<br>

<br>
------------------------------<br>
<br>
_______________________________________________<br>
Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
<br>
Visit other Kitware open-source projects at <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
<br>
Please keep messages on-topic and check the ParaView Wiki at: <a href="http://paraview.org/Wiki/ParaView" target="_blank">http://paraview.org/Wiki/ParaView</a><br>
<br>
Follow this link to subscribe/unsubscribe:<br>
<a href="http://www.paraview.org/mailman/listinfo/paraview" target="_blank">http://www.paraview.org/mailman/listinfo/paraview</a><br>
<br>
<br>
End of ParaView Digest, Vol 114, Issue 6<br>
****************************************<br>
</blockquote></div><br></div></div></div></div>