Definition at line 2763 of file mainRepository.cpp. References Impala::Persistency::KernelMatrixLocator::GetContainer(), Impala::CmdOptions::GetInstance(), Impala::CmdOptions::GetInt(), GetKernelMatrixLocator(), GetRawDataSet(), ILOG_VAR, and Impala::Persistency::KernelMatrixLocator::SetContainer(). Referenced by mainRepository(). 02764 { 02765 ILOG_VAR(Impala.Application.Repository.DoDumpKernelMatrix); 02766 CmdOptions& options = CmdOptions::GetInstance(); 02767 02768 KernelMatrixLocator loc = GetKernelMatrixLocator(options, true); 02769 RawDataSet* dataSet = GetRawDataSet(options, true); 02770 String container = loc.GetContainer(); 02771 int nrContainers = (container == "ALL") ? dataSet->GetNrContainers() : 1; 02772 for (int i=0 ; i<nrContainers ; i++) 02773 { 02774 String cur = (container == "ALL") ? dataSet->GetContainer(i) : container; 02775 loc.SetContainer(cur); 02776 KernelMatrix* mat = KernelMatrixRepository().Get(loc); 02777 mat->Dump(0, options.GetInt("start"), options.GetInt("end")); 02778 delete mat; 02779 } 02780 }
Here is the call graph for this function: ![]()
|