Skip to content

Commit

Permalink
fix wrong path
Browse files Browse the repository at this point in the history
  • Loading branch information
Barthelemy committed Oct 18, 2018
1 parent d519e13 commit b91c2f3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Modules/Example/src/BenchmarkTask.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ void BenchmarkTask::initialize(o2::framework::InitContext& ctx)
string prefix = "qc.tasks_config." + getName();
string taskDefinitionName = mConfigFile->get<std::string>(prefix + ".taskDefinition");
auto taskConfigTree = mConfigFile->getRecursive(taskDefinitionName);
mNumberHistos = taskConfigTree.get<int>(taskDefinitionName + ".numberHistos");
mNumberChecks = taskConfigTree.get<int>(taskDefinitionName + ".numberChecks");
mTypeOfChecks = taskConfigTree.get<std::string>(taskDefinitionName + ".typeOfChecks");
mModuleOfChecks = taskConfigTree.get<std::string>(taskDefinitionName + ".moduleOfChecks");
mNumberHistos = taskConfigTree.get<int>("numberHistos");
mNumberChecks = taskConfigTree.get<int>("numberChecks");
mTypeOfChecks = taskConfigTree.get<std::string>("typeOfChecks");
mModuleOfChecks = taskConfigTree.get<std::string>("moduleOfChecks");

mHistos.reserve(mNumberHistos);

Expand Down

0 comments on commit b91c2f3

Please sign in to comment.