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

void Impala::Application::Repository::DoDumpAnnotationTable (  ) 

Definition at line 741 of file mainRepository.cpp.

References GetAnnotationTableLocator(), Impala::CmdOptions::GetInstance(), Impala::CmdOptions::GetInt(), GetRawDataSet(), and ILOG_VAR.

Referenced by mainRepository().

00742 {
00743     ILOG_VAR(Impala.Application.Repository.DoDumpAnnotationTable);
00744     CmdOptions& options = CmdOptions::GetInstance();
00745 
00746     AnnotationTableLocator loc = GetAnnotationTableLocator(options, true);
00747     AnnotationTable* tab = AnnotationTableRepository().Get(loc);
00748     if (tab == 0)
00749         return;
00750     RawDataSet* dataSet = GetRawDataSet(options, false);
00751     tab->Dump(dataSet, options.GetInt("start"), options.GetInt("end"));
00752     tab->DumpSummary();
00753     delete tab;
00754     if (dataSet)
00755         delete dataSet;
00756 }

Here is the call graph for this function:


Generated on Fri Mar 19 10:48:03 2010 for ImpalaSrc by  doxygen 1.5.1