<div dir="ltr"><div><div><div><div><div><div><div><div><div><div>Hi Ufuk,<br><br></div>Unless I'm not understanding your question correctly, I think you can get what you want by adding in multiple vtkCPPythonScriptPipelines to your vtkCPProcessor object in your adaptor. Alternatively if you want to have a single, master Catalyst script handling other Catalyst scripts you can do something like the following:<br>================<br></div>import script_a<br></div>import script_b<br></div>import script_c<br><br></div>def RequestDataDescription(datadescription):<br></div>  script_a.RequestDataDescription(datadescription)<br>  script_b.RequestDataDescription(datadescription)<br>  script_c.RequestDataDescription(datadescription)<br><br>def DoCoProcessing(datadescription):<br></div>  script_a.DoCoProcessing(datadescription)<br>  script_b.DoCoProcessing(datadescription)<br>  script_c.DoCoProcessing(datadescription)<br>===================<br><br></div>The first way is the recommended way though as that should be more efficient by having process 0 read the scripts and broadcasting the script contents to the other  processes for use. The second method will only do that for the master script.<br><br></div><div>Please let me know if this doesn't answer your question.<br></div><div><br></div>Cheers,<br></div>Andy<br></div><div class="gmail_extra"><br><div class="gmail_quote">On Tue, May 16, 2017 at 5:46 AM, Ufuk Utku Turuncoglu (BE) <span dir="ltr"><<a href="mailto:u.utku.turuncoglu@be.itu.edu.tr" target="_blank">u.utku.turuncoglu@be.itu.edu.tr</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi All,<br>
<br>
I just wonder that is it possible to trigger multiple visualization pipeline in the same time with co-processing. The co-processing script generator plugin mainly outputs only single pipeline at a time and that is fine but what about combining multiple Python script (generated by plugin) using higher level Python script to trigger multiple pipelines. So, i think that this will be much efficient way to look at different part of the data without writing to the disk. I am not sure but somebody else might do it before.<br>
<br>
Regards,<br>
<br>
--ufuk<br>
<br>
______________________________<wbr>_________________<br>
Powered by <a href="http://www.kitware.com" rel="noreferrer" target="_blank">www.kitware.com</a><br>
<br>
Visit other Kitware open-source projects at <a href="http://www.kitware.com/opensource/opensource.html" rel="noreferrer" target="_blank">http://www.kitware.com/opensou<wbr>rce/opensource.html</a><br>
<br>
Please keep messages on-topic and check the ParaView Wiki at: <a href="http://paraview.org/Wiki/ParaView" rel="noreferrer" target="_blank">http://paraview.org/Wiki/ParaV<wbr>iew</a><br>
<br>
Search the list archives at: <a href="http://markmail.org/search/?q=ParaView" rel="noreferrer" target="_blank">http://markmail.org/search/?q=<wbr>ParaView</a><br>
<br>
Follow this link to subscribe/unsubscribe:<br>
<a href="http://public.kitware.com/mailman/listinfo/paraview" rel="noreferrer" target="_blank">http://public.kitware.com/mail<wbr>man/listinfo/paraview</a><br>
</blockquote></div><br></div>