// $Id$ /* * Benchmark macro for transportation of AliExternalTrackParam arrays. * * Usage: *
 *   aliroot -b -q bench-externaltrackparam.C | tee bench-externaltrackparam.log
 * 
* * * @ingroup alihlt_benchmark * @author Matthias.Richter@ift.uib.no */ void bench_externaltrackparam_sequence(int events=100) { /////////////////////////////////////////////////////////////////////////////////////////////////// // // init the HLT system in order to define the analysis chain below // AliHLTSystem* gHLT=AliHLTPluginBase::GetInstance(); gHLT->SetGlobalLoggingLevel(0x7c); /////////////////////////////////////////////////////////////////////////////////////////////////// // // define the analysis chain to be run // int verbosity=0; int levels=11; TString lastPublisher; TString arg; for (int pub=0; pubLoadComponentLibraries("libAliHLTBenchmark.so libAliHLTUtil.so"); gHLT->BuildTaskList("statwriter"); gHLT->Run(events); }