------------------------------------------------------------------------------
| 12128 | #if VTK_OPENFOAM_TIME_PROFILING |
| 12129 | //------------------------------------------------------------------------------ |
| 12130 | long long vtkOpenFOAMReader::GetRequestInformationTimeInMicroseconds() const |
| 12131 | { |
| 12132 | long long totalTime = this->RequestInformationTimeInMicroseconds; |
| 12133 | for (auto& readerObj : this->Readers) |
| 12134 | { |
| 12135 | if (auto reader = vtkOpenFOAMReaderPrivate::SafeDownCast(readerObj)) |
| 12136 | { |
| 12137 | totalTime += reader->RequestInformationTimeInMicroseconds; |
| 12138 | } |
| 12139 | } |
| 12140 | return totalTime; |
| 12141 | } |
| 12142 | |
| 12143 | //------------------------------------------------------------------------------ |
| 12144 | long long vtkOpenFOAMReader::GetRequestDataTimeInMicroseconds() const |
no outgoing calls
no test coverage detected