<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=us-ascii" http-equiv="Content-Type">
  <title></title>
</head>
<body bgcolor="#ffffff" text="#000000">
<pre wrap="">Hello,

meanwhile my colleague (<a class="moz-txt-link-abbreviated" href="mailto:oliver.borm@web.de">oliver.borm@web.de</a>) and I found a possible solution for the attached problem. One way to instance a new transform filter is using the function NewProxy() to instance the Transform Property

#!/usr/bin/python
# -*- coding: utf-8 -*

import sys
sys.path.insert(0 ,"/usr/lib/paraview-3.4")
from paraview import servermanager

sm=servermanager
sm.Connect()

#create simple cone
cone = sm.sources.ConeSource()

#create transform filter 
transF = sm.filters.TransformFilter( Input = cone)

#Instance Transform Property with NewProxy()
transF.Transform = sm.servermanger.Proxymanager().SMProxyManager().NewProxy("transforms","Transform2")

#for example, set Rotation or Position Property
transF.Transform.GetData().SetPropertyWithName("Rotation",[0.0,90.0,0.0])
transF.Transform.GetData().SetPropertyWithName("Position",[1.0,5.0,0.0])

Regards, Tobias.

</pre>
<blockquote>------------------------------<br>
  <br>
Message: 7<br>
Date: Thu, 14 Aug 2008 13:09:41 +0200<br>
From: Tobias Froebel <a class="moz-txt-link-rfc2396E"
 href="mailto:tfroebel@gmx.de">&lt;tfroebel@gmx.de&gt;</a><br>
Subject: [Paraview] Problem: Apply Transformation Filter in pybatch<br>
To: <a class="moz-txt-link-abbreviated"
 href="mailto:paraview@paraview.org">paraview@paraview.org</a>, berk
geveci <a class="moz-txt-link-rfc2396E"
 href="mailto:berk.geveci@kitware.com">&lt;berk.geveci@kitware.com&gt;</a><br>
Message-ID: <a class="moz-txt-link-rfc2396E"
 href="mailto:48A41275.8050500@gmx.de">&lt;48A41275.8050500@gmx.de&gt;</a><br>
Content-Type: text/plain; charset=ISO-8859-15; format=flowed<br>
  <br>
Hello everybody,<br>
  <br>
I'm really a paraview newbie so please excuse my simple questions.<br>
  <br>
I want to run paraview with python batch mode to perform off-screen<br>
post-processing. That's why I include the servermanger python module in<br>
the following python script:<br>
  <br>
#!/usr/bin/python<br>
# -*- coding: utf-8 -*<br>
  <br>
import sys<br>
sys.path.insert(0 ,"/usr/lib/paraview-3.3")<br>
from paraview import servermanager<br>
  <br>
sm=servermanager<br>
sm.Connect()<br>
  <br>
#create simple cone<br>
cone = sm.sources.ConeSource()<br>
  <br>
#create transform filter<br>
transF = sm.filters.TransformFilter( Input = cone)<br>
</blockquote>
<pre wrap="">
#debug
print transF.Transform
print type(transF.Transform)

Actually the transform filter  doesn't d o anything  since  the
proxyProperty transF.Transform has no value.
I tried to set a sm.vtk.vtkTransform -object  to  the  transF.Transform
Property but unfortunately it does not work:

</pre>
<blockquote type="cite">
  <blockquote type="cite">
    <blockquote type="cite">
      <pre wrap=""><span class="moz-txt-citetags">&gt;&gt;&gt; </span>trafo = sm.vtk.vtkTransform()
<span class="moz-txt-citetags">&gt;&gt;&gt; </span>transF.Transform = trafo
      </pre>
    </blockquote>
  </blockquote>
</blockquote>
<pre wrap=""><!---->Traceback (innermost last):
  File "&lt;stdin&gt;", line 1, in &lt;module&gt;
  File "/usr/lib/paraview-3.3/paraview/servermanager.py", line 1503, in
setProperty
    return self.SetPropertyWithName(propName, value)
  File "/usr/lib/paraview-3.3/paraview/servermanager.py", line 163, in
SetPropertyWithName
    prop.SetData(arg)
  File "/usr/lib/paraview-3.3/paraview/servermanager.py", line 487, in
SetData
    self.SMProperty.AddProxy(value_proxy)
TypeError: function takes exactly 2 arguments (1 given)

I guess the types  of  both  objects do not match.

Maybe anybody knows how to set an appropriate transform value to the
TransformFilter's Property Transform.

Thanks a lot  for  your attention, Tobias</pre>
<br>
<br>
<a class="moz-txt-link-abbreviated" href="mailto:paraview-request@paraview.org">paraview-request@paraview.org</a> schrieb:
<blockquote
 cite="mid:mailman.1760.1218717964.22941.paraview@paraview.org"
 type="cite">
  <pre wrap="">Send ParaView mailing list submissions to
        <a class="moz-txt-link-abbreviated" href="mailto:paraview@paraview.org">paraview@paraview.org</a>

To subscribe or unsubscribe via the World Wide Web, visit
        <a class="moz-txt-link-freetext" href="http://www.paraview.org/mailman/listinfo/paraview">http://www.paraview.org/mailman/listinfo/paraview</a>
or, via email, send a message with subject or body 'help' to
        <a class="moz-txt-link-abbreviated" href="mailto:paraview-request@paraview.org">paraview-request@paraview.org</a>

You can reach the person managing the list at
        <a class="moz-txt-link-abbreviated" href="mailto:paraview-owner@paraview.org">paraview-owner@paraview.org</a>

When replying, please edit your Subject line so it is more specific
than "Re: Contents of ParaView digest..."


Today's Topics:

   1. Will using RPath interfere with CPack on a Mac? (Samuel Crow)
   2. Re: Will using RPath interfere with CPack on a Mac? (Berk Geveci)
   3. Re: CVS not installing pvpython (Orion Poplawski)
   4. Re: Will using RPath interfere with CPack on a Mac? (Samuel Crow)
   5. Re: Will using RPath interfere with CPack on a Mac? (Mike Jackson)
   6. Problem: Apply Transformation Filter in pypatch (Tobias Froebel)
   7. Problem: Apply Transformation Filter in pybatch (Tobias Froebel)
   8. Re: Will using RPath interfere with CPack on a Mac? (Berk Geveci)
   9. Re: Will using RPath interfere with CPack on a Mac? (Berk Geveci)
  10. Re: Will using RPath interfere with CPack on a Mac? (Mike Jackson)


----------------------------------------------------------------------

Message: 1
Date: Wed, 13 Aug 2008 13:04:20 -0700 (PDT)
From: Samuel Crow <a class="moz-txt-link-rfc2396E" href="mailto:samuel_crow_work@rocketmail.com">&lt;samuel_crow_work@rocketmail.com&gt;</a>
Subject: [Paraview] Will using RPath interfere with CPack on a Mac?
To: <a class="moz-txt-link-abbreviated" href="mailto:paraview@paraview.org">paraview@paraview.org</a>
Message-ID: <a class="moz-txt-link-rfc2396E" href="mailto:494617.32519.qm@web59515.mail.ac4.yahoo.com">&lt;494617.32519.qm@web59515.mail.ac4.yahoo.com&gt;</a>
Content-Type: text/plain; charset=us-ascii

I remember seeing a note somewhere in the ParaView build files that there was a problem associated with installation of dynamic libraries that were installed using RPath.  Does that mean that I can't distribute my reader plugins using CPack without having to manually execute install_name_tool -change on all of the library dependencies internally used by the reader .dylib files?

What I'm trying to do is make my readers work on user systems that have a binary install of ParaView on them.  I'd like to use CPack to generate a .dmg file for the readers as a package.


      



------------------------------

Message: 2
Date: Wed, 13 Aug 2008 16:29:02 -0400
From: "Berk Geveci" <a class="moz-txt-link-rfc2396E" href="mailto:berk.geveci@kitware.com">&lt;berk.geveci@kitware.com&gt;</a>
Subject: Re: [Paraview] Will using RPath interfere with CPack on a
        Mac?
To: <a class="moz-txt-link-abbreviated" href="mailto:samuel_crow_work@rocketmail.com">samuel_crow_work@rocketmail.com</a>
Cc: <a class="moz-txt-link-abbreviated" href="mailto:paraview@paraview.org">paraview@paraview.org</a>
Message-ID:
        <a class="moz-txt-link-rfc2396E" href="mailto:45d654b0808131329j4a61e415r20db9a9a8b166dd7@mail.gmail.com">&lt;45d654b0808131329j4a61e415r20db9a9a8b166dd7@mail.gmail.com&gt;</a>
Content-Type: text/plain; charset=ISO-8859-1

Hmmm. Tricky. Where will the users insall the plugin?

On Wed, Aug 13, 2008 at 4:04 PM, Samuel Crow
<a class="moz-txt-link-rfc2396E" href="mailto:samuel_crow_work@rocketmail.com">&lt;samuel_crow_work@rocketmail.com&gt;</a> wrote:
  </pre>
  <blockquote type="cite">
    <pre wrap="">I remember seeing a note somewhere in the ParaView build files that there was a problem associated with installation of dynamic libraries that were installed using RPath.  Does that mean that I can't distribute my reader plugins using CPack without having to manually execute install_name_tool -change on all of the library dependencies internally used by the reader .dylib files?

What I'm trying to do is make my readers work on user systems that have a binary install of ParaView on them.  I'd like to use CPack to generate a .dmg file for the readers as a package.




_______________________________________________
ParaView mailing list
<a class="moz-txt-link-abbreviated" href="mailto:ParaView@paraview.org">ParaView@paraview.org</a>
<a class="moz-txt-link-freetext" href="http://www.paraview.org/mailman/listinfo/paraview">http://www.paraview.org/mailman/listinfo/paraview</a>

    </pre>
  </blockquote>
  <pre wrap=""><!---->

------------------------------

Message: 3
Date: Wed, 13 Aug 2008 15:24:26 -0600
From: Orion Poplawski <a class="moz-txt-link-rfc2396E" href="mailto:orion@cora.nwra.com">&lt;orion@cora.nwra.com&gt;</a>
Subject: Re: [Paraview] CVS not installing pvpython
To: Berk Geveci <a class="moz-txt-link-rfc2396E" href="mailto:berk.geveci@kitware.com">&lt;berk.geveci@kitware.com&gt;</a>
Cc: <a class="moz-txt-link-rfc2396E" href="mailto:paraview@paraview.org">"paraview@paraview.org"</a> <a class="moz-txt-link-rfc2396E" href="mailto:paraview@paraview.org">&lt;paraview@paraview.org&gt;</a>
Message-ID: <a class="moz-txt-link-rfc2396E" href="mailto:48A3510A.1050604@cora.nwra.com">&lt;48A3510A.1050604@cora.nwra.com&gt;</a>
Content-Type: text/plain; charset=ISO-8859-1; format=flowed

Ah, yes.  I think this is the third time I've asked this.  I'll try to 
remember in the future.  Problem is, I'm going to need rpath on in the 
build.  Indeed:

$ paraview
/usr/lib64/paraview/paraview-real: symbol lookup error: 
/usr/lib64/paraview/libpqCore.so: undefined symbol: 
_ZN11QFormLayout16staticMetaObjectE
[orion@test ~]$ ldd /usr/lib64/paraview/paraview-real
         linux-vdso.so.1 =&gt;  (0x00007fffa79fe000)
         libpqComponents.so =&gt; not found
         libQtPython.so =&gt; not found
         libpqCore.so =&gt; not found
....

and so on.

I need to install libs in /usr/lib64/paraview and 
/usr/lib64/paraview-mpi to keep the mpi and non-mpi versions separate.


Berk Geveci wrote:
  </pre>
  <blockquote type="cite">
    <pre wrap="">Hmm. That's weird. I am not seeing this. Are you building with
VTK_USE_RPATH off? For some reason I haven't tracked down, some
installation targets do not work unless VTK_USE_RPATH is off. This is
not an issue for release versions (even versions) because we force it
to be off but it is an issue for development versions (odd versions)
because the default it RPATH on. This is on my list of things to track
down.

-berk

On Fri, Jul 18, 2008 at 6:53 PM, Orion Poplawski <a class="moz-txt-link-rfc2396E" href="mailto:orion@cora.nwra.com">&lt;orion@cora.nwra.com&gt;</a> wrote:
    </pre>
    <blockquote type="cite">
      <pre wrap="">My current CVS builds are not installing pvpython and
vtkSMExtractDocumentation though they are getting built.  Any ideas?

--
Orion Poplawski
Technical Manager                     303-415-9701 x222
NWRA/CoRA Division                    FAX: 303-415-9702
3380 Mitchell Lane                  <a class="moz-txt-link-abbreviated" href="mailto:orion@cora.nwra.com">orion@cora.nwra.com</a>
Boulder, CO 80301              <a class="moz-txt-link-freetext" href="http://www.cora.nwra.com">http://www.cora.nwra.com</a>
_______________________________________________
ParaView mailing list
<a class="moz-txt-link-abbreviated" href="mailto:ParaView@paraview.org">ParaView@paraview.org</a>
<a class="moz-txt-link-freetext" href="http://www.paraview.org/mailman/listinfo/paraview">http://www.paraview.org/mailman/listinfo/paraview</a>

      </pre>
    </blockquote>
  </blockquote>
  <pre wrap=""><!---->

  </pre>
</blockquote>
<br>
<pre class="moz-signature" cols="78">-- 
Tobias Fr&ouml;bel 
<a class="moz-txt-link-abbreviated" href="mailto:tfroebel@gmx.de">tfroebel@gmx.de</a>
</pre>
</body>
</html>