CbmRoot
Loading...
Searching...
No Matches
runCbmHistoServer.cxx
Go to the documentation of this file.
1/* Copyright (C) 2019 GSI Helmholtzzentrum fuer Schwerionenforschung, Darmstadt
2 SPDX-License-Identifier: GPL-3.0-only
3 Authors: Florian Uhlig [committer] */
4
5#include "CbmHistoServer.h"
6
7#include <memory>
8
9#include "runFairMQDevice.h"
10
11namespace bpo = boost::program_options;
12
13void addCustomOptions(bpo::options_description& /*options*/) {}
14
15//std::unique_ptr<FairMQExHistoCanvasDrawer> getCanvasDrawer();
16
17FairMQDevicePtr getDevice(const FairMQProgOptions& /*config*/)
18{
19 CbmHistoServer* histoServer = new CbmHistoServer();
20
21 // histoServer->SetCanvasDrawer(getCanvasDrawer());
22
23 return histoServer;
24}
FairMQDevicePtr getDevice(const FairMQProgOptions &)
void addCustomOptions(bpo::options_description &)