Belle II Software
release-08-01-10
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
cdcAutomatonTrackingValidationBkg.py
1
#!/usr/bin/env python3
2
3
10
11
"""
12
<header>
13
<contact>software-tracking@belle2.org</contact>
14
<input>EvtGenSim.root</input>
15
<output>CDCAutomatonTrackingValidationBkg.root</output>
16
<description>
17
This module validates that cdc cellular automaton track finding
18
is capable of reconstructing tracks in Y(4S) runs.
19
</description>
20
</header>
21
"""
22
23
from
tracking.validation.run
import
TrackingValidationRun
24
import
logging
25
import
basf2
26
VALIDATION_OUTPUT_FILE =
'CDCAutomatonTrackingValidationBkg.root'
27
CONTACT =
'software-tracking@belle2.org'
28
N_EVENTS = 1000
29
ACTIVE =
True
30
31
32
class
CDCAutomaton
(
TrackingValidationRun
):
33
"""Validate the CDC TrackFinderAutomaton"""
34
35
n_events = N_EVENTS
36
37
generator_module =
'generic'
38
39
root_input_file =
'../EvtGenSim.root'
40
41
def
finder_module
(self, path):
42
"""Add the CDC TrackFinderAutomaton to the basf2 path"""
43
path.add_module(
'TFCDC_TrackFinderAutomaton'
,
44
# UseNLoops = 1,
45
)
46
47
48
tracking_coverage = {
49
'WhichParticles'
: [
'CDC'
],
# Include all particles seen in CDC, also secondaries
50
'UsePXDHits'
:
False
,
51
'UseSVDHits'
:
False
,
52
'UseCDCHits'
:
True
,
53
'UseOnlyAxialCDCHits'
:
False
,
54
"UseReassignedHits"
:
True
,
55
"UseNLoops"
: 1.0,
56
"UseOnlyBeforeTOP"
:
True
,
57
'MinCDCAxialHits'
: 8,
58
'MinCDCStereoHits'
: 6,
59
"AllowFirstCDCSuperLayerOnly"
:
True
,
60
'EnergyCut'
: 0,
61
}
62
63
pulls =
True
64
65
contact = CONTACT
66
67
output_file_name = VALIDATION_OUTPUT_FILE
68
69
70
def
main
():
71
basf2.set_random_seed(1337)
72
validation_run =
CDCAutomaton
()
73
validation_run.configure_and_execute_from_commandline()
74
75
76
if
__name__ ==
'__main__'
:
77
logging.basicConfig(level=logging.INFO)
78
if
ACTIVE:
79
main
()
80
else
:
81
print(
"This validation deactivated and thus basf2 is not executed.\n"
82
"If you want to run this validation, please set the 'ACTIVE' flag above to 'True'.\n"
83
"Exiting."
)
cdcAutomatonTrackingValidationBkg.CDCAutomaton
Definition:
cdcAutomatonTrackingValidationBkg.py:32
tracking.run.tracked_event_generation.ReadOrGenerateTrackedEventsRun.finder_module
finder_module
Name of the finder module to be used - can be everything that is accepted by tracking....
Definition:
tracked_event_generation.py:33
tracking.validation.run.TrackingValidationRun
Definition:
run.py:25
main
Definition:
main.py:1
tracking.validation.run
Definition:
run.py:1
main
int main(int argc, char **argv)
Run all tests.
Definition:
test_main.cc:91
tracking
validation
cdcAutomatonTrackingValidationBkg.py
Generated on Mon Sep 23 2024 14:06:42 for Belle II Software by
1.9.1