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

std::string Impala::Application::IDash::AppControlDossier::GetIpsString (  )  [inline]

Definition at line 64 of file AppControlDossier.h.

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

00065     {
00066         double timeVal = mTimer.SplitTime();
00067         double ips = (double) mNrItemsDone / timeVal;
00068         std::ostringstream ipsStream;
00069         ipsStream << mNrItemsDone << " items in " << timeVal
00070                   << " sec = " << ips << " ips" << std::ends;
00071         return ipsStream.str();
00072     }

Here is the call graph for this function:


Generated on Fri Mar 19 10:39:27 2010 for ImpalaSrc by  doxygen 1.5.1