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

Method ReadArrays

IO/Parallel/vtkMultiBlockPLOT3DReader.cxx:1558–1579  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1556}
1557
1558int vtkMultiBlockPLOT3DReader::ReadArrays(
1559 int piece, int npieces, int nghosts, int timestep, vtkDataObject* output)
1560{
1561 if (this->GetNumberOfFileNames() > 0)
1562 {
1563 this->CurrentFileIndex = timestep;
1564 if (this->vtkParallelReader::ReadArrays(piece, npieces, nghosts, timestep, output))
1565 {
1566 this->CurrentFileIndex = timestep;
1567 }
1568 else
1569 {
1570 return 0;
1571 }
1572 }
1573 else if (this->FunctionFileName)
1574 {
1575 this->ReadArrays(std::string(), piece, npieces, nghosts, output);
1576 }
1577 // If no q filename is set, do nothing.
1578 return 1;
1579}
1580
1581int vtkMultiBlockPLOT3DReader::ReadMesh(
1582 const std::string&, int /*piece*/, int npieces, int nghosts, vtkDataObject* output)

Callers

nothing calls this directly

Calls 15

ClearGeometryCacheMethod · 0.95
CheckFileMethod · 0.95
ReadQHeaderMethod · 0.95
OpenFileForDataReadMethod · 0.95
NewFloatArrayMethod · 0.95
SkipByteCountMethod · 0.95
ReadValuesMethod · 0.95
ReadIntBlockMethod · 0.95
CloseFileMethod · 0.95
GetByteCountSizeMethod · 0.95
ReadScalarMethod · 0.95
ReadVectorMethod · 0.95

Tested by

no test coverage detected