17 L_(info) <<
"Starting application with port " <<
fOpts.Port();
19 L_(info) <<
"Opening archive " <<
fOpts.Input();
21 auto archive = std::make_shared<RecoResultsInputArchive>(
fOpts.Input().string());
22 auto histograms = std::make_shared<Histograms>();
24 std::shared_ptr<RecoResultsInputArchive> archive2;
25 std::shared_ptr<Histograms> histograms2;
26 if (not
fOpts.Input2().empty()) {
27 L_(info) <<
"Opening second archive " <<
fOpts.Input2();
28 archive2 = std::make_shared<RecoResultsInputArchive>(
fOpts.Input2().string());
29 histograms2 = std::make_shared<Histograms>();
34 .sensor =
fOpts.Sensor(),
36 .histograms = histograms,
38 .histograms2 = histograms2,
41 fServer = std::make_unique<Server>(settings);