Belle II Software  release-05-01-25
hrelay.cc
1 //+
2 // File : hrelay.cc
3 // Description : A server to collect histograms over network
4 //
5 // Author : Ryosuke Itoh, IPNS, KEK
6 // Date : 23 - Apr - 2013
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 
main
int main(int argc, char **argv)
Run all tests.
Definition: test_main.cc:77
Belle2::HistoRelay
Definition: HistoRelay.h:22
Belle2
Abstract base class for different kinds of events.
Definition: MillepedeAlgorithm.h:19