Hi Tim,<br><br>This should get set in the RequestDataDescription method in the generated Python script. When I first did it I thought we&#39;d easily be able to figure out which fields were needed in order to update all of the required pipelines and/or views. Unfortunately this isn&#39;t trivial in VTK so basically what happens is that if a writer or view should output it specifies that all fields should be made available. This is the &quot;datadescription.GetInputDescription(i).AllFieldsOn()&quot; part of the generated python script. <br>
<br>Answering your final question, this is something that is done automatically in the generated script.<br><br>Andy<br><br><div class="gmail_quote">On Wed, Nov 7, 2012 at 2:57 PM, Tim Gallagher <span dir="ltr">&lt;<a href="mailto:tim.gallagher@gatech.edu" target="_blank">tim.gallagher@gatech.edu</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi,<br>
<br>
I see in the example code for ParaView/CoProcessing/Adaptors/FortranAdaptors/PhastaAdaptor/PhastaAdaptor.cxx calls like:<br>
<br>
  vtkCPInputDataDescription* idd =<br>
    ParaViewCoProcessing::GetCoProcessorData()-&gt;GetInputDescriptionByName(&quot;input&quot;);<br>
<br>
  ...<br>
<br>
  if(idd-&gt;IsFieldNeeded(&quot;velocity&quot;))<br>
  {<br>
  ...<br>
<br>
The only way IsFieldNeeded returns true is if that name field was added with AddCellField or AddPointField.<br>
<br>
Where does that happen? My intuition says that the python or C++ processing script (generated by exporting state) would have those calls in it for the datasets that are actually used. In other words, if I set up my view in the GUI and I load my data and put a Slice through it and color by &quot;Velocity&quot;, I expected the script from Export State to contain a call to AddCellField(&quot;Velocity&quot;). At the very least I expected to see calls to add the fields I chose to load when I loaded my sample file to set up the view.<br>

<br>
So is that something that I need to put in the script on my own after it&#39;s exported or did I miss something? If I have to put it there myself, is RequestDataDescription the correct place to put that?<br>
<br>
Thanks,<br>
<br>
Tim<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>
</blockquote></div><br>