CbmRoot
runCbmHistoServer.cxx
Go to the documentation of this file.
1 /********************************************************************************
2  * Copyright (C) 2014 GSI Helmholtzzentrum fuer Schwerionenforschung GmbH *
3  * *
4  * This software is distributed under the terms of the *
5  * GNU Lesser General Public Licence (LGPL) version 3, *
6  * copied verbatim in the file "LICENSE" *
7  ********************************************************************************/
8 #include <memory>
9 
10 #include "runFairMQDevice.h"
11 
12 #include "CbmHistoServer.h"
13 
14 namespace bpo = boost::program_options;
15 
16 void addCustomOptions(bpo::options_description& /*options*/) {}
17 
18 //std::unique_ptr<FairMQExHistoCanvasDrawer> getCanvasDrawer();
19 
20 FairMQDevicePtr getDevice(const FairMQProgOptions& /*config*/) {
21  CbmHistoServer* histoServer = new CbmHistoServer();
22 
23  // histoServer->SetCanvasDrawer(getCanvasDrawer());
24 
25  return histoServer;
26 }
addCustomOptions
void addCustomOptions(bpo::options_description &)
Definition: runCbmHistoServer.cxx:16
CbmHistoServer.h
getDevice
FairMQDevicePtr getDevice(const FairMQProgOptions &)
Definition: runCbmHistoServer.cxx:20
CbmHistoServer
Definition: CbmHistoServer.h:22