Belle II Software development
b2hlt_proxyhistoserver.cc
1/**************************************************************************
2 * basf2 (Belle II Analysis Software Framework) *
3 * Author: The Belle II Collaboration *
4 * *
5 * See git log for contributors and copyright holders. *
6 * This file is licensed under LGPL-3.0, see LICENSE.md. *
7 **************************************************************************/
8#include <daq/hbasf2/apps/ZMQHistogramServer.h>
9#include <framework/logging/Logger.h>
10
11using namespace Belle2;
12
18int main(int argc, char* argv[])
19{
20 ZMQHistogramToZMQServer histogramServer;
21 histogramServer.initFromConsole("b2hlt_proxyhistoserver - non-final histogram server receiving DQM histograms on the input (confirmed connection), "
22 "merging them and sending the result to the output (also a confirmed connection). Useful for hierarchical structures.",
23 argc, argv);
24 histogramServer.main();
25
26 B2RESULT("Program terminated.");
27}
Non-Final histogram app: receive histogram messages from all clients and react with a confirmation me...
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 ...
void main()
Start the main loop polling on the output and monitoring connections and eventually also on the input...
Abstract base class for different kinds of events.