Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • simulation/km3buu
1 result
Show changes
Commits on Source (2)
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
......