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
CheckErrorEvent.py
1
#!/usr/bin/env python3
2
# -*- coding: utf-8 -*-
3
4
19
20
from
basf2
import
*
21
22
# Set the log level to show only error and fatal messages
23
# set_log_level(LogLevel.ERROR)
24
set_log_level(LogLevel.INFO)
25
26
# input
27
input = register_module(
'SeqRootInput'
)
28
# input.param('inputFileName', '/x02/data/e0000r000554.sroot')
29
30
# output
31
output = register_module(
'CheckErrorEvent'
)
32
33
prog = register_module(
'Progress'
)
34
35
# Create main path
36
main = create_path()
37
38
# Add modules to main path
39
main.add_module(input)
40
main.add_module(output)
41
main.add_module(prog)
42
43
# Process all events
44
process(main)
rawdata
examples
CheckErrorEvent.py
Generated on Tue Jan 4 2022 03:01:31 for Belle II Software by
1.8.17