FairRoot/PandaRoot
Namespaces | Typedefs | Functions
runPixelDigisProcessor.cxx File Reference
#include <csignal>
#include "FairMQLogger.h"
#include "runSimpleMQStateMachine.h"
#include "PndMQMvdPixelDigiProcessorBursts.h"

Go to the source code of this file.

Namespaces

 std
 

Typedefs

using channelBranches = std::vector< std::pair< std::string, std::string > >
 std More...
 

Functions

static std::istreamstd::operator>> (std::istream &is, std::pair< std::string, std::string > &into)
 
int main (int argc, char **argv)
 

Typedef Documentation

using channelBranches = std::vector<std::pair<std::string, std::string> >

std

FairRoot - FairMQ - base/MQ

Definition at line 16 of file runPixelDigisProcessor.cxx.

Function Documentation

int main ( int  argc,
char **  argv 
)

Definition at line 29 of file runPixelDigisProcessor.cxx.

30 {
31  try
32  {
33 
34  FairMQProgOptions config;
35 
36  config.ParseAll(argc, argv);
37 
39 
40 
41  runStateMachine(processor, config);
42 
43 
44  }
45  catch (std::exception& e)
46  {
47  LOG(ERROR) << "Unhandled Exception reached the top of main: "
48  << e.what() << ", application will now exit";
49  return 1;
50  }
51 
52  return 0;
53 }