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
Merge requests
!44
GiBUU 2021 Patch 3
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
GiBUU 2021 Patch 3
gibuu_update_patch3
into
master
Overview
0
Commits
3
Pipelines
4
Changes
1
Merged
Johannes Schumann
requested to merge
gibuu_update_patch3
into
master
2 years ago
Overview
0
Commits
3
Pipelines
4
Changes
1
Expand
Update to new GiBUU2021 Patch 3.
0
0
Merge request reports
Viewing commit
dcc43886
Prev
Next
Show latest version
1 file
+
10
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
dcc43886
make reader backward compatible
· dcc43886
Johannes Schumann
authored
2 years ago
km3buu/output.py
+
10
−
2
Options
@@ -536,11 +536,19 @@ class GiBUUOutput:
@property
def
A
(
self
):
return
self
.
jobcard
[
"
target
"
][
"
a
"
]
grp
=
self
.
jobcard
[
"
target
"
]
if
"
a
"
in
grp
.
keys
():
return
grp
[
"
a
"
]
elif
"
target_a
"
in
grp
.
keys
():
return
grp
[
"
target_a
"
]
@property
def
Z
(
self
):
return
self
.
jobcard
[
"
target
"
][
"
z
"
]
grp
=
self
.
jobcard
[
"
target
"
]
if
"
z
"
in
grp
.
keys
():
return
grp
[
"
z
"
]
elif
"
target_z
"
in
grp
.
keys
():
return
grp
[
"
target_z
"
]
@property
def
data_path
(
self
):
Loading