Belle II Software
release-08-02-06
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
a
b
c
e
f
g
n
p
s
v
z
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
Typedefs
Macros
trainFeasibleSegmentRelationFilter.py
1
#!/usr/bin/env python3
2
# -*- coding: utf-8 -*-
3
4
11
12
import
os
13
import
sys
14
import
os.path
15
16
from
tracking.run.event_generation
import
ReadOrGenerateEventsRun
17
from
trackfindingcdc.run.training
import
TrainingRunMixin
18
19
20
class
FeasibleSegmentRelationFilterTrainingRun
(TrainingRunMixin,
ReadOrGenerateEventsRun
):
21
"""Run to record segment relations encountered at the SegmentLinker and retrain its mva method"""
22
23
24
n_events = 10000
25
26
generator_module =
"generic"
27
28
bkg_files = os.path.join(os.environ[
"VO_BELLE2_SW_DIR"
],
"bkg"
)
29
30
31
truth =
"truth_positive"
32
33
@property
34
def
identifier
(self):
35
"""Database identifier of the filter being trained"""
36
return
"trackfindingcdc_FeasibleSegmentRelationFilter.xml"
37
38
def
create_path
(self):
39
"""Setup the recording path after the simulation"""
40
path = super().
create_path
()
41
path.add_module(
"TFCDC_WireHitPreparer"
,
42
flightTimeEstimation=
"outwards"
)
43
44
path.add_module(
"TFCDC_ClusterPreparer"
,
45
SuperClusterDegree=3,
46
SuperClusterExpandOverApogeeGap=
True
)
47
48
49
if
self.
task
task ==
"train"
:
50
varSets = [
51
"feasible"
,
52
"filter(truth)"
,
53
]
54
55
elif
self.
task
task ==
"eval"
:
56
varSets = [
57
"filter(feasible)"
,
58
"filter(truth)"
,
59
]
60
61
elif
self.
task
task ==
"explore"
:
62
varSets = [
63
"feasible"
,
64
"hit_gap"
,
65
"fit"
,
66
"filter(truth)"
,
67
]
68
69
else
:
70
raise
ValueError(
"Unknown task "
+ self.
task
task)
71
72
path.add_module(
"TFCDC_SegmentFinderFacetAutomaton"
,
73
SegmentRelationFilter=
"unionrecording"
,
74
SegmentRelationFilterParameters={
75
"rootFileName"
: self.sample_file_name,
76
"varSets"
: varSets,
77
})
78
79
return
path
80
81
82
def
main
():
83
run =
FeasibleSegmentRelationFilterTrainingRun
()
84
run.configure_and_execute_from_commandline()
85
86
87
if
__name__ ==
"__main__"
:
88
import
logging
89
logging.basicConfig(stream=sys.stdout, level=logging.INFO, format=
'%(levelname)s:%(message)s'
)
90
main
()
tracking.run.event_generation.ReadOrGenerateEventsRun
Definition:
event_generation.py:35
trainFeasibleSegmentRelationFilter.FeasibleSegmentRelationFilterTrainingRun
Definition:
trainFeasibleSegmentRelationFilter.py:20
trainFeasibleSegmentRelationFilter.FeasibleSegmentRelationFilterTrainingRun.create_path
def create_path(self)
Definition:
trainFeasibleSegmentRelationFilter.py:38
trainFeasibleSegmentRelationFilter.FeasibleSegmentRelationFilterTrainingRun.task
task
Process each event according to the user's desired task (train, eval, explore)
Definition:
trainFeasibleSegmentRelationFilter.py:49
trainFeasibleSegmentRelationFilter.FeasibleSegmentRelationFilterTrainingRun.identifier
def identifier(self)
Definition:
trainFeasibleSegmentRelationFilter.py:34
main
Definition:
main.py:1
tracking.run.event_generation
Definition:
event_generation.py:1
main
int main(int argc, char **argv)
Run all tests.
Definition:
test_main.cc:91
tracking
trackFindingCDC
train
trainFeasibleSegmentRelationFilter.py
Generated on Tue Jan 28 2025 01:57:45 for Belle II Software by
1.9.1