We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f0b74c commit 0f1aa22Copy full SHA for 0f1aa22
src/pyhf/modifiers/staterror.py
@@ -23,7 +23,7 @@ def required_parset(sigmas, fixed: List[bool], constraint: Optional[str] = "gaus
23
'inits': (1.0,) * n_parameters,
24
'bounds': ((1e-10, 10.0),) * n_parameters,
25
'fixed': tuple(fixed),
26
- 'auxdata': (1.0,) * n_parameters,
+ 'auxdata': (1.0,) * n_parameters if constraint == "gaussian" else tuple(sigmas),
27
'sigmas' if constraint == "gaussian" else 'factors': tuple(sigmas),
28
}
29
0 commit comments