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

void Impala::Core::Table::AnnotationTable::DumpSummary (  )  [inline]

Definition at line 367 of file AnnotationTable.h.

References GetLabel(), IsNegative(), IsPositive(), and Impala::Core::Table::Table::Size().

Referenced by DumpSummaryObject().

00368     {
00369         int pos=0, neg=0, skip=0;
00370         for (int i=0 ; i<Size() ; ++i)
00371         {
00372             if (IsPositive(i))
00373                 ++pos;
00374             else if (IsNegative(i))
00375                 ++neg;
00376             else
00377                 ++skip;
00378         }
00379         std::cout << GetLabel() << " : " << pos << " positive, " << neg
00380                   << " negative, " << skip << " skip, " << Size() << " total"
00381                   << std::endl;
00382     }

Here is the call graph for this function:


Generated on Fri Mar 19 11:20:00 2010 for ImpalaSrc by  doxygen 1.5.1