<html><head><style type="text/css"><!-- DIV {margin:0px;} --></style></head><body><div style="font-family:times new roman,new york,times,serif;font-size:12pt"><div>Hi,<br><br>Like the title says, I would like to add extra informations associated to a vtkPolyData (or vtkMultiBlockDataSet). I would like to add a simulationType (in the information associated to the vtkpolydata) that is a type of simulation (we have several ones) and a vtk filter will select the good process depending of the simulationType of the input.<br><br>For example, in a RequestData I do:<br><br>int myclass::RequestData( vtkInformation *vtkNotUsed(request), <br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; vtkInformationVector **vtkNotUsed(inputVector),<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
 &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; vtkInformationVector *outputVector)<br>{<br>&nbsp;&nbsp;&nbsp; ...<br>&nbsp;&nbsp;&nbsp; vtkInformation* outInfo = outputVector-&gt;GetInformationObject(0);<br>&nbsp;&nbsp;&nbsp; if( ! outInfo-&gt;Has(vtkDataObject::DATA_EXTENT_TYPE()))<br>&nbsp;&nbsp;&nbsp; {<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; vtkInformationIntegerKey* DATA_EXTENT_TYPE = vtkDataObject::DATA_EXTENT_TYPE();<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; outInfo-&gt;Set(DATA_EXTENT_TYPE, simulationType); // simulationType is a type of simulation and we have many type of simulation that will be used a filter to select the good process<br>&nbsp;&nbsp;&nbsp;&nbsp; }<br>&nbsp;&nbsp;&nbsp;&nbsp; if( outInfo-&gt;Has(vtkDataObject::DATA_EXTENT_TYPE()))<br>&nbsp;&nbsp;&nbsp;&nbsp; {<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; vtkOutputWindow::GetInstance()-&gt;DisplayText("---");<br>&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
 }<br>&nbsp;&nbsp;&nbsp; ...<br>}<br><br>But, I am not sure that DATA_EXTENT_TYPE is the good one. There are severals like (DATA_TYPE_NAME, FIELD_NAME,...). So which one should I use to add extra informations associated to a vtkPolyData? <br><br>Thank you.<br><br></div>
</div><br>




      </body></html>