<div dir="ltr">In a reader plugin for unstructured grids, after the plugin opens a file, and paraview calls RequestData for the first time, I initialize the grid like: <div><br></div><div><div> vtkInformation* outInfo = outputVector->GetInformationObject(0);</div><div> vtkDataSet* output = vtkDataSet::GetData(outInfo);</div><div> vtk_grid = vtkUnstructuredGrid::SafeDownCast(output);<br></div><div><div>  </div><div>  vtk_grid->Initialize();</div><div>  vtk_grid->Allocate(0);</div><div>  vtkSmartPointer<vtkPoints> points = vtkSmartPointer<vtkPoints>::New();</div><div>  vtk_grid->SetPoints(points);</div><div>  // create grid points, cells..</div></div><div>  // load cell data fields (the user can control this via the plugin interface)</div><div><br></div><div>If the user then decides to load/unload some fields, I would like to reuse the loaded points and cells, and just update/add/remove fields. </div><div><br></div><div>The problem comes when in subsequent calls to RequestData:</div><div><br></div><div><div>  vtkInformation* outInfo = outputVector->GetInformationObject(0);</div><div>  vtkDataSet* output = vtkDataSet::GetData(outInfo);</div></div><div><br></div><div>  // this asserts works:</div><div>  assert(old_vtk_grid == vtkUnstructuredGrid::SafeDownCast(output));<br></div><div><div> // this assert fails: the number of points is 0..</div><div>  assert(old_number_of_points == vtk_grid->GetNumberOfPoints());</div></div><div><div>  // this produces a segmentation fault</div><div>  assert(old_number_of_cells == vtk_grid->GetCells()->GetNumberOfCells());</div></div><div><div> </div></div><div>That is, even tho the grid pointer that gets passed to RequestData points to the same memory as before, it seems that the grid is "empty" (number of points is 0). </div><div><br></div><div>Is there a way to preserve the grid state between calls to RequestData? </div><div><br></div><div>Bests,</div><div>Gonzalo</div><div><br></div>-- <br><div class="gmail_signature"><div dir="ltr">Dipl.-Ing. Gonzalo Brito Gadeschi<br>Institute of Aerodynamics and Chair of Fluid Mechanics<br>RWTH Aachen University<br>Wuellnerstraße 5a<br>D-52062 Aachen<br>Germany<br>Phone: ++49-(0)241-80-94821<br>Fax: ++49-(0)241-80-92257<br>E-mail:  <a href="mailto:g.brito@aia.rwth-aachen.de" target="_blank">g.brito@aia.rwth-aachen.de</a><br>Internet: <a href="http://www.aia.rwth-aachen.de" target="_blank">www.aia.rwth-aachen.de</a></div></div>
</div></div>