CbmRoot
runTriggerHandlerEtof.cxx
Go to the documentation of this file.
2 #include "runFairMQDevice.h"
3 
4 #include <iomanip>
5 #include <string>
6 
7 namespace bpo = boost::program_options;
8 using namespace std;
9 
10 void addCustomOptions(bpo::options_description& options) {
11  options.add_options()(
12  "SandboxMode", bpo::value<bool>()->default_value(1), "Test mode switch");
13  ;
14 }
15 
16 FairMQDevicePtr getDevice(const FairMQProgOptions& /*config*/) {
17  return new CbmDeviceTriggerHandlerEtof();
18 }
CbmDeviceTriggerHandlerEtof
Definition: CbmDeviceTriggerHandlerEtof.h:37
addCustomOptions
void addCustomOptions(bpo::options_description &options)
Definition: runTriggerHandlerEtof.cxx:10
CbmDeviceTriggerHandlerEtof.h
getDevice
FairMQDevicePtr getDevice(const FairMQProgOptions &)
Definition: runTriggerHandlerEtof.cxx:16