Belle II Software  release-08-01-10
hrelay.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 <stdio.h>
9 #include <stdlib.h>
10 #include <string>
11 
12 #include <daq/dqm/HistoRelay.h>
13 
14 using namespace Belle2;
15 using namespace std;
16 
17 int main(int argc, char** argv)
18 {
19  if (argc < 4) {
20  printf("Usage : hrelay mapfile dest port interval\n");
21  exit(-1);
22  }
23  string mapfile = string(argv[1]);
24  string dest = string(argv[2]);
25  int port = atoi(argv[3]);
26  int interval = atoi(argv[4]);
27 
28  HistoRelay hrelay(mapfile, dest, port);
29 
30  for (;;) {
31  sleep(interval);
32  // printf("hrelay : collecting histograms\n");
33  hrelay.collect();
34  }
35 
36 }
37 
38 
Abstract base class for different kinds of events.
int main(int argc, char **argv)
Run all tests.
Definition: test_main.cc:91