From 8e1d0be969e6401a67cd2aa4eb3bdb00db44e86b Mon Sep 17 00:00:00 2001 From: Alvaro Tolosa Delgado Date: Mon, 16 Oct 2023 20:48:35 +0200 Subject: [PATCH] Typo in printout fixed --- DDG4/python/DDSim/Helper/Gun.py | 2 +- DDTest/python/userSteeringFile.PY | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/DDG4/python/DDSim/Helper/Gun.py b/DDG4/python/DDSim/Helper/Gun.py index 608b41f7c..c3cfb7cf7 100644 --- a/DDG4/python/DDSim/Helper/Gun.py +++ b/DDG4/python/DDSim/Helper/Gun.py @@ -35,7 +35,7 @@ def __init__(self): self.momentumMin = 0 * GeV self._momentumMax_EXTRA = {'help': "Maximal momentum when using distribution (default = 0.0)"} self.momentumMax = 10 * GeV - self._energy_EXTRA = {'help': "The kinetic energy for the particle gun.\n\n" + self._energy_EXTRA = {'help': "Total energy (including mass) for the particle gun.\n\n" "If not None, it will overwrite the setting of momentumMin and momentumMax"} self.energy = None diff --git a/DDTest/python/userSteeringFile.PY b/DDTest/python/userSteeringFile.PY index e21e6e66c..11a8eee6e 100644 --- a/DDTest/python/userSteeringFile.PY +++ b/DDTest/python/userSteeringFile.PY @@ -211,7 +211,7 @@ SIM.gun.direction = (0, 0, 1) ## SIM.gun.distribution = None -## The kinetic energy for the particle gun. +## Total energy (including mass) for the particle gun. ## ## If not None, it will overwrite the setting of momentumMin and momentumMax SIM.gun.energy = None