Belle II Software  release-05-01-25
createshm.cc
1 //+
2 // File : createshm.cc
3 // Description : Create Shared Memory for flow logging
4 //
5 // Author : Ryosuke Itoh, IPNS, KEK
6 // Date : 7 - Apr - 2015
7 //-
8 
9 #include <stdio.h>
10 #include <stdlib.h>
11 
12 #include "daq/rfarm/manager/RFSharedMem.h"
13 
14 using namespace Belle2;
15 using namespace std;
16 
17 int main(int argc, char** argv)
18 {
19  if (argc < 2) {
20  printf("createrb : rbufname \n");
21  exit(-1);
22  }
23  RFSharedMem* shm = new RFSharedMem(argv[1]);
24 }
25 
26 
27 
Belle2::RFSharedMem
Definition: RFSharedMem.h:51
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