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

Method isObjectMissingData

IO/Parallel/vtkNek5000Reader.cxx:1743–1755  ·  view source on GitHub ↗

see if the current object is missing data that was requested return true if it is, otherwise false

Source from the content-addressed store, hash-verified

1741// see if the current object is missing data that was requested
1742// return true if it is, otherwise false
1743bool vtkNek5000Reader::isObjectMissingData()
1744{
1745 // check the stored variables
1746 for (int i = 0; i < this->num_vars; i++)
1747 {
1748 if (this->GetPointArrayStatus(i) == 1 && !this->curObj->vars[i])
1749 {
1750 return (true);
1751 }
1752 }
1753
1754 return (false);
1755} // vtkNek5000Reader::isObjectMissingData()
1756
1757bool vtkNek5000Reader::objectMatchesRequest()
1758{

Callers 1

RequestDataMethod · 0.95

Calls 1

GetPointArrayStatusMethod · 0.95

Tested by

no test coverage detected