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

Method GetRequestInformationTimeInMicroseconds

IO/Geometry/vtkOpenFOAMReader.cxx:12130–12141  ·  view source on GitHub ↗

------------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

12128#if VTK_OPENFOAM_TIME_PROFILING
12129//------------------------------------------------------------------------------
12130long 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//------------------------------------------------------------------------------
12144long long vtkOpenFOAMReader::GetRequestDataTimeInMicroseconds() const

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected