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
e390f69d
Commit
e390f69d
authored
1 year ago
by
Johannes Schumann
Browse files
Options
Downloads
Plain Diff
Merge branch 'decay-option' into 'master'
Secondary Decay Option See merge request
!43
parents
d783c289
3a19a7a3
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!43
Secondary Decay Option
Pipeline
#38866
passed with warnings
1 year ago
Stage: test
Stage: coverage
Stage: doc
Stage: deploy
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGELOG.rst
+1
-19
1 addition, 19 deletions
CHANGELOG.rst
km3buu/cmd.py
+8
-1
8 additions, 1 deletion
km3buu/cmd.py
with
9 additions
and
20 deletions
CHANGELOG.rst
+
1
−
19
View file @
e390f69d
Unreleased changes
------------------
*
Python environment is not version tracked until now
*
Add decay option to the runner script
Version 0
---------
0.4.0 / 2020-11-09
~~~~~~~~~~~~~~~~~~
* Docker: Resized pyhtia/jetset output particle vector
0.3.0 / 2020-09-05
~~~~~~~~~~~~~~~~~~
* Docker: Fixed environment variables
0.2.0 / 2020-09-03
~~~~~~~~~~~~~~~~~~
* Docker: GiBUU compiled with RootTuple for root file output
0.1.0 / 2020-01-21
~~~~~~~~~~~~~~~~~~
* Docker: First GiBUU docker environment
This diff is collapsed.
Click to expand it.
km3buu/cmd.py
+
8
−
1
View file @
e390f69d
...
...
@@ -117,6 +117,13 @@ ARGPARSE_GENERAL_PARAMS = [{
"
action
"
:
argparse
.
BooleanOptionalAction
,
"
help
"
:
"
Do tau propagation
"
,
"
default
"
:
False
},
{
"
option_strings
"
:
[
"
--decay
"
],
"
dest
"
:
"
decay
"
,
"
action
"
:
argparse
.
BooleanOptionalAction
,
"
help
"
:
"
Decay final state particles (according to the decays done in gSeaGen)
"
,
"
default
"
:
True
},
{
"
option_strings
"
:
[
"
--zenith
"
,
"
-z
"
],
"
dest
"
:
"
zenith
"
,
...
...
@@ -201,7 +208,7 @@ def main():
args
.
target
,
seed
=
args
.
seed
,
fluxfile
=
fluxfile
,
do_decay
=
False
)
do_decay
=
args
.
decay
)
jc
[
"
neutrinoanalysis
"
][
"
outputEvents
"
]
=
True
jc
[
"
neutrinoanalysis
"
][
"
inclusiveAnalysis
"
]
=
False
...
...
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