Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
KM3BUU
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
simulation
KM3BUU
Commits
24d233c4
Commit
24d233c4
authored
4 years ago
by
Johannes Schumann
Browse files
Options
Downloads
Patches
Plain Diff
Refactoring
parent
02075457
No related branches found
No related tags found
1 merge request
!2
Tau propagation
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
km3buu/output.py
+41
-34
41 additions, 34 deletions
km3buu/output.py
with
41 additions
and
34 deletions
km3buu/output.py
+
41
−
34
View file @
24d233c4
...
...
@@ -99,6 +99,7 @@ class GiBUUOutput:
Parameters
----------
data_dir: str
Path to the GiBUU output directory
"""
if
isinstance
(
data_dir
,
TemporaryDirectory
):
self
.
_tmp_dir
=
data_dir
...
...
@@ -165,6 +166,13 @@ class GiBUUOutput:
@staticmethod
def
bjorken_x
(
roottuple_data
):
"""
Calculate Bjorken x variable for the GiBUU events
Parameters
----------
roottuple_data: awkward1.highlevel.Array
"""
d
=
roottuple_data
k_in
=
np
.
vstack
([
np
.
array
(
d
.
lepIn_E
),
...
...
@@ -188,6 +196,14 @@ class GiBUUOutput:
@staticmethod
def
bjorken_y
(
roottuple_data
):
"""
Calculate Bjorken y scaling variable for the GiBUU events
(Lab. frame)
Parameters
----------
roottuple_data: awkward1.highlevel.Array
"""
d
=
roottuple_data
y
=
1
-
np
.
divide
(
np
.
array
(
d
.
lepOut_E
),
np
.
array
(
d
.
lepIn_E
))
return
y
...
...
@@ -264,6 +280,25 @@ def write_detector_file(gibuu_output,
mc_event_id
=
0
mc_trk_id
=
0
def
add_particles
(
particle_data
,
rotation
):
for
i
in
range
(
len
(
particle_data
.
E
)):
trk
=
ROOT
.
Trk
()
trk
.
id
=
mc_trk_id
mc_trk_id
+=
1
mom
=
np
.
array
([
particle_data
.
Px
[
i
],
particle_data
.
Py
[
i
],
particle_data
.
Pz
[
i
]
])
p_dir
=
R
.
apply
(
mom
/
np
.
linalg
.
norm
(
mom
))
prtcl_pos_offset
=
np
.
array
(
[
particle_data
.
x
[
i
],
particle_data
.
y
[
i
],
particle_data
.
z
[
i
]])
trk
.
pos
.
set
(
*
np
.
add
(
vtx_pos
,
prtcl_pos_offset
))
trk
.
dir
.
set
(
*
p_dir
)
trk
.
mother_id
=
0
trk
.
type
=
int
(
particle_data
.
barcode
[
i
])
trk
.
E
=
particle_data
.
E
[
i
]
trk
.
t
=
timestamp
aafile
.
evt
.
mc_trks
.
push_back
(
trk
)
is_cc
=
False
if
gibuu_output
.
jobcard
is
None
:
...
...
@@ -352,40 +387,12 @@ def write_detector_file(gibuu_output,
aafile
.
evt
.
mc_trks
.
push_back
(
nu_in_trk
)
event_tau_sec
=
tau_secondaries
[
i
]
for
j
in
range
(
len
(
event_tau_sec
.
E
)):
trk
=
ROOT
.
Trk
()
trk
.
id
=
mc_trk_id
mc_trk_id
+=
1
mom
=
np
.
array
([
event_tau_sec
.
Px
[
j
],
event_tau_sec
.
Py
[
j
],
event_tau_sec
.
Pz
[
j
]
])
p_dir
=
R
.
apply
(
mom
/
np
.
linalg
.
norm
(
mom
))
prtcl_pos_offset
=
np
.
array
([
event_tau_sec
.
x
[
j
],
event_tau_sec
.
y
[
j
],
event_tau_sec
.
z
[
j
]
])
trk
.
pos
.
set
(
*
np
.
add
(
vtx_pos
,
prtcl_pos_offset
))
trk
.
dir
.
set
(
*
p_dir
)
trk
.
mother_id
=
0
trk
.
type
=
int
(
event_tau_sec
.
barcode
[
j
])
trk
.
E
=
event_tau_sec
.
E
[
j
]
trk
.
t
=
timestamp
aafile
.
evt
.
mc_trks
.
push_back
(
trk
)
for
j
in
range
(
len
(
event
.
E
)):
trk
=
ROOT
.
Trk
()
trk
.
id
=
mc_trk_id
mc_trk_id
+=
1
mom
=
np
.
array
([
event
.
Px
[
j
],
event
.
Py
[
j
],
event
.
Pz
[
j
]])
p_dir
=
R
.
apply
(
mom
/
np
.
linalg
.
norm
(
mom
))
trk
.
pos
.
set
(
*
vtx_pos
)
trk
.
dir
.
set
(
*
p_dir
)
trk
.
mother_id
=
0
trk
.
type
=
int
(
event
.
barcode
[
j
])
trk
.
E
=
event
.
E
[
j
]
trk
.
t
=
timestamp
aafile
.
evt
.
mc_trks
.
push_back
(
trk
)
if
tau_secondaries
is
not
None
:
event_tau_sec
=
tau_secondaries
[
i
]
add_particles
(
event_tau_sec
)
add_particles
(
event
)
aafile
.
write
()
del
aafile
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment