----------------------------------------------------------------------------
| 691 | |
| 692 | //---------------------------------------------------------------------------- |
| 693 | vtkMTimeType vtkIOSSReader::GetMTime() |
| 694 | { |
| 695 | auto mtime = this->Superclass::GetMTime(); |
| 696 | for (int cc = ENTITY_START; cc < ENTITY_END; ++cc) |
| 697 | { |
| 698 | mtime = std::max(mtime, this->EntitySelection[cc]->GetMTime()); |
| 699 | mtime = std::max(mtime, this->EntityFieldSelection[cc]->GetMTime()); |
| 700 | } |
| 701 | mtime = std::max(mtime, this->GlobalFieldSelection->GetMTime()); |
| 702 | return mtime; |
| 703 | } |
| 704 | |
| 705 | //---------------------------------------------------------------------------- |
| 706 | void vtkIOSSReader::RemoveAllEntitySelections() |
no test coverage detected