Definition at line 277 of file mainTiming.cpp. References DoConvSep(), DoRecConvSep(), DoRecConvSepComlex(), Impala::CmdOptions::GetArg(), Impala::CmdOptions::GetInstance(), Impala::CmdOptions::Initialise(), and Impala::CmdOptions::ParseArgs(). Referenced by main(). 00278 { 00279 CmdOptions& options = CmdOptions::GetInstance(); 00280 options.Initialise(false, false, true); 00281 String usageStr = "cmd machine, where cmd can be\n"; 00282 usageStr += " convsep, recconvsep or recconvsepcomple"; 00283 if (! options.ParseArgs(argc, argv, usageStr, 2)) 00284 return 1; 00285 00286 String cmd = options.GetArg(0); 00287 String machine = options.GetArg(1); 00288 if (cmd == "convsep") 00289 DoConvSep(machine); 00290 else if (cmd == "recconvsep") 00291 DoRecConvSep(machine); 00292 else if (cmd == "recconvsepcomplex") 00293 DoRecConvSepComlex(machine); 00294 else std::cout << "Unknown cmd : " << cmd << std::endl; 00295 00296 return 0; 00297 }
Here is the call graph for this function: ![]()
|