Belle II Software  release-05-01-25
b2hlt_distributor.cc
1 /**************************************************************************
2  * BASF2 (Belle Analysis Framework 2) *
3  * Copyright(C) 2019 - Belle II Collaboration *
4  * *
5  * Author: The Belle II Collaboration *
6  * Contributors: Nils Braun *
7  * *
8  * This software is provided "as is" without any warranty. *
9  **************************************************************************/
10 #include <daq/hbasf2/apps/ZMQDistributor.h>
11 #include <framework/logging/Logger.h>
12 
13 using namespace Belle2;
14 
20 int main(int argc, char* argv[])
21 {
22  ZMQDistributor distributor;
23  distributor.initFromConsole("b2hlt_distributor - first step in the HLT data transportation. Receives events via a "
24  "raw connection (e.g. from event builder) and sends them via a load-balanced connection to connected clients.",
25  argc, argv);
26  distributor.main();
27 
28  B2RESULT("Program terminated.");
29 }
Belle2::ZMQStandardApp::main
void main()
Start the main loop polling on the output and monitoring connections and eventually also on the input...
Definition: ZMQApp.details.h:59
main
int main(int argc, char **argv)
Run all tests.
Definition: test_main.cc:77
Belle2
Abstract base class for different kinds of events.
Definition: MillepedeAlgorithm.h:19
Belle2::ZMQStandardApp::initFromConsole
void initFromConsole(const std::string &description, int argc, char *argv[])
Should be called before the main() function to initialize the connections using the paremeters given ...
Definition: ZMQApp.details.h:29
Belle2::ZMQDistributor
Standard distributor app: receive data via a raw connection (e.g.
Definition: ZMQDistributor.h:43