File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 1
- # Release notes v0.1.1
1
+ # Release notes v0.1
2
2
3
3
## New features since last release
4
4
20
20
21
21
## Bug fixes
22
22
23
+ * Bugfix in ` simplify ` module, where signal injector was not initiating properly.
24
+ ([ #9 ] ( https://github.com/SpeysideHEP/spey-pyhf/pull/9 ) )
25
+
23
26
* Bugfix in apriori likelihood computation for full likelihoods mentioned in
24
27
[ #5 ] ( https://github.com/SpeysideHEP/spey-pyhf/issues/5 ) .
25
28
([ #2 ] ( https://github.com/SpeysideHEP/spey-pyhf/pull/2 ) )
Original file line number Diff line number Diff line change 1
1
"""Version of the spey - pyhf plugin"""
2
2
3
- __version__ = "0.1.2 "
3
+ __version__ = "0.1.3 "
Original file line number Diff line number Diff line change @@ -190,7 +190,7 @@ def __call__(
190
190
for channel in interpreter .get_channels (control_region_indices ):
191
191
interpreter .inject_signal (
192
192
channel ,
193
- [0.0 ] * signal_patch_map [channel ]["data" ],
193
+ [0.0 ] * len ( signal_patch_map [channel ]["data" ]) ,
194
194
signal_patch_map [channel ]["modifiers" ]
195
195
if include_modifiers_in_control_model
196
196
else None ,
You can’t perform that action at this time.
0 commit comments