From 175890ba4c1208cebdc01732d65c0f6486c3db80 Mon Sep 17 00:00:00 2001 From: Andrew Gilbert Date: Mon, 24 Jul 2023 18:02:41 +0200 Subject: [PATCH] Add help message for --redefineSignalPOIs in impacts --- CombineTools/python/combine/Impacts.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/CombineTools/python/combine/Impacts.py b/CombineTools/python/combine/Impacts.py index 3b714741665..2c4d6f65fc7 100755 --- a/CombineTools/python/combine/Impacts.py +++ b/CombineTools/python/combine/Impacts.py @@ -23,7 +23,13 @@ def attach_intercept_args(self, group): CombineToolBase.attach_intercept_args(self, group) group.add_argument('-m', '--mass', required=True) group.add_argument('-d', '--datacard', required=True) - group.add_argument('--redefineSignalPOIs') + group.add_argument('--redefineSignalPOIs', help="""This option will be + forwarded to combine, and accepts arguments in the same X,Y,Z format. + For models with multiple POIs, the impacts will be calculated for all + of them at the same time. It is important to specify the POI list with this + option, which must be included in the --doInitialFit, --doFits and + --output stages. Note the ordering of POIs in the list must also be + identical in each step.""") group.add_argument('--setPhysicsModelParameters') group.add_argument('--setParameters') group.add_argument('--name', '-n', default='Test')