Skip to content
Snippets Groups Projects
Commit e390f69d authored by Johannes Schumann's avatar Johannes Schumann
Browse files

Merge branch 'decay-option' into 'master'

Secondary Decay Option

See merge request !43
parents d783c289 3a19a7a3
No related branches found
No related tags found
1 merge request!43Secondary Decay Option
Pipeline #38866 passed with warnings
Unreleased changes 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
...@@ -117,6 +117,13 @@ ARGPARSE_GENERAL_PARAMS = [{ ...@@ -117,6 +117,13 @@ ARGPARSE_GENERAL_PARAMS = [{
"action": argparse.BooleanOptionalAction, "action": argparse.BooleanOptionalAction,
"help": "Do tau propagation", "help": "Do tau propagation",
"default": False "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"], "option_strings": ["--zenith", "-z"],
"dest": "zenith", "dest": "zenith",
...@@ -201,7 +208,7 @@ def main(): ...@@ -201,7 +208,7 @@ def main():
args.target, args.target,
seed=args.seed, seed=args.seed,
fluxfile=fluxfile, fluxfile=fluxfile,
do_decay=False) do_decay=args.decay)
jc["neutrinoanalysis"]["outputEvents"] = True jc["neutrinoanalysis"]["outputEvents"] = True
jc["neutrinoanalysis"]["inclusiveAnalysis"] = False jc["neutrinoanalysis"]["inclusiveAnalysis"] = False
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment