I&#39;m terrible with names but.....  If you would like to keep the default behavior the same then I would suggest an option to &quot;Maintain structure&quot;.<div><br></div><div>Any good?</div><div><br></div><div>Thanks,</div>
<div>Paul<br><br><div class="gmail_quote">On 25 February 2010 15:09, Utkarsh Ayachit <span dir="ltr">&lt;<a href="mailto:utkarsh.ayachit@kitware.com">utkarsh.ayachit@kitware.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
Ah I c. I don&#39;t think there was any strong reason for trimming the<br>
tree down. We can definitely add that as an option as well. Any ideas<br>
what to call this new option :)?<br>
<font color="#888888"><br>
Utkarsh<br>
</font><div><div></div><div class="h5"><br>
On Thu, Feb 25, 2010 at 9:57 AM, Paul Edwards &lt;<a href="mailto:paul.m.edwards@gmail.com">paul.m.edwards@gmail.com</a>&gt; wrote:<br>
&gt; Utkarsh,<br>
&gt; If you do that you will end up with all the empty blocks in the structure.<br>
&gt;  I would like to just see the extracted blocks without losing the original<br>
&gt; structure.<br>
&gt; Regards,<br>
&gt; Paul<br>
&gt;<br>
&gt; On 25 February 2010 14:50, Utkarsh Ayachit &lt;<a href="mailto:utkarsh.ayachit@kitware.com">utkarsh.ayachit@kitware.com</a>&gt;<br>
&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt; Paul,<br>
&gt;&gt;<br>
&gt;&gt; If you don&#39;t want the ExtractBlock filter to prune the output, you can<br>
&gt;&gt; always simply uncheck the &quot;Prune Output&quot; checkbox.<br>
&gt;&gt;<br>
&gt;&gt; Utkarsh<br>
&gt;&gt;<br>
&gt;&gt; On Thu, Feb 18, 2010 at 9:45 AM, Paul Edwards &lt;<a href="mailto:paul.m.edwards@gmail.com">paul.m.edwards@gmail.com</a>&gt;<br>
&gt;&gt; wrote:<br>
&gt;&gt; &gt; Hi,<br>
&gt;&gt; &gt; What is the reason for pruning the structure in the &quot;Extract Block&quot;<br>
&gt;&gt; &gt; filter<br>
&gt;&gt; &gt; when there is only one child item?  I output the following structure<br>
&gt;&gt; &gt; from<br>
&gt;&gt; &gt; the custom reader:<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; output (multi-block dataset)<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; zone 1 (multi-block dataset)<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; volume (unstructured grid)<br>
&gt;&gt; &gt; boundaries (multi-block dataset)<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; blade (poly data)<br>
&gt;&gt; &gt; hub (poly data)<br>
&gt;&gt; &gt; case (poly data)<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; zone 2 (multi-block dataset)<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; volume (unstructured grid)<br>
&gt;&gt; &gt; boundaries (multi-block dataset)<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; blade (poly data)<br>
&gt;&gt; &gt; hub (poly data)<br>
&gt;&gt; &gt; case (poly data)<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; If I were to extract both the blades then the resulting structured would<br>
&gt;&gt; &gt; be:<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; output (multi-block dataset)<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; blade (poly data)<br>
&gt;&gt; &gt; blade (poly data)<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; This has now lost all the information from the original structure.<br>
&gt;&gt; &gt; Commenting out the section for the case when there is only one child<br>
&gt;&gt; &gt; item<br>
&gt;&gt; &gt; fixes this for me:<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; 8&lt;--------------------------------------------------------------------------------------------------<br>
&gt;&gt; &gt; Index: ./VTK/Graphics/vtkExtractBlock.cxx<br>
&gt;&gt; &gt; ===================================================================<br>
&gt;&gt; &gt; RCS file:<br>
&gt;&gt; &gt; /cvsroot/ParaView3/ParaView3/VTK/Graphics/vtkExtractBlock.cxx,v<br>
&gt;&gt; &gt; retrieving revision 1.6<br>
&gt;&gt; &gt; diff -r1.6 vtkExtractBlock.cxx<br>
&gt;&gt; &gt; 239,251c239,251<br>
&gt;&gt; &gt; &lt;         vtkMultiBlockDataSet* prunedBlock =<br>
&gt;&gt; &gt; vtkMultiBlockDataSet::SafeDownCast(block);<br>
&gt;&gt; &gt; &lt;         if (prunedBlock &amp;&amp; prunedBlock-&gt;GetNumberOfBlocks()==1)<br>
&gt;&gt; &gt; &lt;           {<br>
&gt;&gt; &gt; &lt;           // shrink redundant branches.<br>
&gt;&gt; &gt; &lt;           clone-&gt;SetBlock(index, prunedBlock-&gt;GetBlock(0));<br>
&gt;&gt; &gt; &lt;           if (prunedBlock-&gt;HasMetaData(static_cast&lt;unsigned int&gt;(0)))<br>
&gt;&gt; &gt; &lt;             {<br>
&gt;&gt; &gt; &lt;             clone-&gt;GetMetaData(index)-&gt;Copy(prunedBlock-&gt;GetMetaData(<br>
&gt;&gt; &gt; &lt;                 static_cast&lt;unsigned int&gt;(0)));<br>
&gt;&gt; &gt; &lt;             }<br>
&gt;&gt; &gt; &lt;           }<br>
&gt;&gt; &gt; &lt;         else<br>
&gt;&gt; &gt; &lt;           {<br>
&gt;&gt; &gt; ---<br>
&gt;&gt; &gt;&gt; //        vtkMultiBlockDataSet* prunedBlock =<br>
&gt;&gt; &gt;&gt; vtkMultiBlockDataSet::SafeDownCast(block);<br>
&gt;&gt; &gt;&gt; //        if (prunedBlock &amp;&amp; prunedBlock-&gt;GetNumberOfBlocks()==1)<br>
&gt;&gt; &gt;&gt; //          {<br>
&gt;&gt; &gt;&gt; //          // shrink redundant branches.<br>
&gt;&gt; &gt;&gt; //          clone-&gt;SetBlock(index, prunedBlock-&gt;GetBlock(0));<br>
&gt;&gt; &gt;&gt; //          if (prunedBlock-&gt;HasMetaData(static_cast&lt;unsigned int&gt;(0)))<br>
&gt;&gt; &gt;&gt; //            {<br>
&gt;&gt; &gt;&gt; //            clone-&gt;GetMetaData(index)-&gt;Copy(prunedBlock-&gt;GetMetaData(<br>
&gt;&gt; &gt;&gt; //                static_cast&lt;unsigned int&gt;(0)));<br>
&gt;&gt; &gt;&gt; //            }<br>
&gt;&gt; &gt;&gt; //          }<br>
&gt;&gt; &gt;&gt; //        else<br>
&gt;&gt; &gt;&gt; //          {<br>
&gt;&gt; &gt; 257c257<br>
&gt;&gt; &gt; &lt;           }<br>
&gt;&gt; &gt; ---<br>
&gt;&gt; &gt;&gt; //          }<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; --------------------------------------------------------------------------------------------------&gt;8<br>
&gt;&gt; &gt; Could this case be removed in the main CVS or is there a good reason for<br>
&gt;&gt; &gt; keeping it?  (maybe an option could be added for it....)<br>
&gt;&gt; &gt; Thanks,<br>
&gt;&gt; &gt; Paul<br>
&gt;&gt; &gt; _______________________________________________<br>
&gt;&gt; &gt; Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; Visit other Kitware open-source projects at<br>
&gt;&gt; &gt; <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; Please keep messages on-topic and check the ParaView Wiki at:<br>
&gt;&gt; &gt; <a href="http://paraview.org/Wiki/ParaView" target="_blank">http://paraview.org/Wiki/ParaView</a><br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; Follow this link to subscribe/unsubscribe:<br>
&gt;&gt; &gt; <a href="http://www.paraview.org/mailman/listinfo/paraview" target="_blank">http://www.paraview.org/mailman/listinfo/paraview</a><br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt;<br>
&gt;<br>
&gt;<br>
</div></div></blockquote></div><br></div>