| 1755 | } // vtkNek5000Reader::isObjectMissingData() |
| 1756 | |
| 1757 | bool vtkNek5000Reader::objectMatchesRequest() |
| 1758 | { |
| 1759 | // see if the current object matches the requested data |
| 1760 | // return false if it does not match, otherwise true |
| 1761 | for (int i = 0; i < this->num_vars; i++) |
| 1762 | { |
| 1763 | if (this->GetPointArrayStatus(i) != this->curObj->vars[i]) |
| 1764 | { |
| 1765 | return (false); |
| 1766 | } |
| 1767 | } |
| 1768 | return (true); |
| 1769 | } // vtkNek5000Reader::objectMatchesRequest() |
| 1770 | |
| 1771 | bool vtkNek5000Reader::objectHasExtraData() |
| 1772 | { |
no test coverage detected