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

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

Definition at line 1657 of file mainRepository.cpp.

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

Referenced by mainRepository().

01658 {
01659     ILOG_VAR(Impala.Application.Repository.DoDumpAnnotationTable);
01660     CmdOptions& options = CmdOptions::GetInstance();
01661 
01662     AnnotationTableLocator loc = GetAnnotationTableLocator(options, true);
01663     AnnotationTable* tab = AnnotationTableRepository().Get(loc);
01664     if (tab == 0)
01665         return;
01666     RawDataSet* dataSet = GetRawDataSet(options, false);
01667     tab->Dump(dataSet, options.GetInt("start"), options.GetInt("end"));
01668     tab->DumpSummary();
01669     delete tab;
01670     if (dataSet)
01671         delete dataSet;
01672 }

Here is the call graph for this function:


Generated on Thu Jan 13 09:15:48 2011 for ImpalaSrc by  doxygen 1.5.1