Belle II Software
development
Toggle main menu visibility
Main Page
Modules
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
z
Variables
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
v
w
x
z
Typedefs
a
b
c
d
e
g
i
k
l
m
n
p
r
s
t
u
v
w
Enumerations
Enumerator
c
d
f
p
t
v
Classes
Class List
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
Enumerations
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
t
u
v
Enumerator
a
b
c
d
e
f
g
h
k
l
m
n
o
p
r
s
t
u
v
w
z
Related Functions
b
c
d
g
i
o
r
s
t
Files
File List
File Members
All
Functions
Typedefs
Macros
rb2sock.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 <string>
9
10
#include "daq/rfarm/event/Rb2Sock.h"
11
12
using namespace
Belle2
;
13
using namespace
std
;
14
15
int
main(
int
argc,
char
** argv)
16
{
17
// Retrieve RingBuffer name[1], destination[2], and port number[3]
18
if
(argc < 3) {
19
printf(
"rb2sock : rbufname, dest, port\n"
);
20
exit(-1);
21
}
22
23
string
a1(argv[1]);
24
string
a2(argv[2]);
25
int
a3 = atoi(argv[3]);
26
27
Rb2Sock
rs(a1, a2, a3);
28
29
for
(;;) {
30
int
stat = rs.SendEvent();
31
// printf ( "rb2sock : sending %d\n", stat );
32
if
(stat <= 0)
break
;
33
}
34
exit(0);
35
}
36
37
38
Belle2::Rb2Sock
Definition:
Rb2Sock.h:23
Belle2
Abstract base class for different kinds of events.
Definition:
MillepedeAlgorithm.h:17
std
STL namespace.
daq
rfarm
event
tools
rb2sock.cc
Generated on Wed Apr 9 2025 02:38:00 for Belle II Software by
1.9.6