Skip to content
Snippets Groups Projects

Add HttpServer and refresh rate configuration to cbmreco_fairrun

Merged Jan de Cuveland requested to merge j.decuveland/cbmroot:cbmreco_config into master
6 files
+ 18
4
Compare changes
  • Side-by-side
  • Inline
Files
6
@@ -10,7 +10,8 @@ Application::Application(ProgramOptions const& opt) : fOpt(opt)
config.LoadYaml(fOpt.ConfigYamlFile());
if (!fOpt.SaveConfigYamlFile().empty()) { config.SaveYaml(fOpt.SaveConfigYamlFile()); }
fCbmReco = std::make_unique<CbmReco>(fOpt.InputUri(), fOpt.OutputRootFile(), fOpt.MaxNumTs(), config);
fCbmReco =
std::make_unique<CbmReco>(fOpt.InputUri(), fOpt.OutputRootFile(), fOpt.MaxNumTs(), config, fOpt.HttpServerPort());
}
void Application::Run() { fCbmReco->Run(); }
Loading