MCPcopy Create free account
hub / github.com/Kitware/VTK / RequestData

Method RequestData

IO/Geometry/vtkTecplotReader.cxx:523–536  ·  view source on GitHub ↗

------------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

521
522//------------------------------------------------------------------------------
523int vtkTecplotReader::RequestData(vtkInformation* vtkNotUsed(request),
524 vtkInformationVector** vtkNotUsed(inputVector), vtkInformationVector* outputVector)
525{
526 vtkInformation* outInf = outputVector->GetInformationObject(0);
527 vtkMultiBlockDataSet* output =
528 vtkMultiBlockDataSet::SafeDownCast(outInf->Get(vtkDataObject::DATA_OBJECT()));
529
530 this->Internal->Completed = 0;
531 this->ReadFile(output);
532 outInf = nullptr;
533 output = nullptr;
534
535 return 1;
536}
537
538//------------------------------------------------------------------------------
539const char* vtkTecplotReader::GetDataTitle()

Callers

nothing calls this directly

Calls 3

ReadFileMethod · 0.95
GetInformationObjectMethod · 0.80
GetMethod · 0.45

Tested by

no test coverage detected