Belle II Software
release-05-02-19
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
k
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
u
v
w
x
z
Typedefs
a
b
c
d
e
h
i
l
m
n
p
r
s
t
v
w
Enumerations
Enumerator
c
d
f
p
t
u
v
w
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
ConvertSeqROOTFile.py
1
#!/usr/bin/env python3
2
# -*- coding: utf-8 -*-
3
4
9
10
from
basf2
import
*
11
12
set_log_level(LogLevel.INFO)
13
14
# input
15
input = register_module(
'SeqRootInput'
)
16
17
# dump
18
dump = register_module(
'SeqRootOutput'
)
19
20
# progress monitor
21
progress = register_module(
'Progress'
)
22
23
# Create main path
24
main = create_path()
25
26
# Add modules to main path
27
main.add_module(input)
28
main.add_module(dump)
29
main.add_module(progress)
30
31
# Process all events
32
process(main)
daq
rawdata
examples
ConvertSeqROOTFile.py
Generated on Tue Jan 4 2022 02:53:41 for Belle II Software by
1.8.17