see if the current object is missing data that was requested return true if it is, otherwise false
| 1741 | // see if the current object is missing data that was requested |
| 1742 | // return true if it is, otherwise false |
| 1743 | bool 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 | |
| 1757 | bool vtkNek5000Reader::objectMatchesRequest() |
| 1758 | { |
no test coverage detected