Home || Architecture || Video Search || Visual Search || Scripts || Applications || Important Messages || OGL || Src

std::string Impala::Visualization::AppControlDoc::GetIpsString (  )  [inline]

Definition at line 83 of file AppControlDoc.h.

References mNrItemsDone, mTimer, and Impala::Timer::SplitTime().

00084     {
00085         double timeVal = mTimer.SplitTime();
00086         double ips = (double) mNrItemsDone / timeVal;
00087         std::ostringstream ipsStream;
00088         ipsStream << mNrItemsDone << " items in " << timeVal
00089                   << " sec = " << ips << " ips" << std::ends;
00090         return ipsStream.str();
00091     }

Here is the call graph for this function:


Generated on Fri Mar 19 11:42:31 2010 for ImpalaSrc by  doxygen 1.5.1