-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Background improvements and fixes (#355)
* Forcing max logl bkg factor to be the integration limits. * Better avoidance of zero background upper limit in module generator. Searching now non-zero background channels from both higher and lower energies. Fixes #350 * Syntax error fix in CustomBackground import * Example modules updated. * Raising errors if the given background support is not reasonable. Fixes #353 * Likelihood checking simplified in the test runs. * Allowing Nones in truth values. Fixes #351 * Changelog and version update * Updated `main.py` to include an `else` clause for the background support, and corrected X-PSI version * Update `module_generator.py` to include an `else` clause for the background support * bkg support `else` clause removed from `main.py` * bkg support `else` clause removed from `module_generator.py` * Changelog date changed. --------- Co-authored-by: Devarshi Choudhury <[email protected]>
- Loading branch information
1 parent
455e356
commit 7b28d24
Showing
12 changed files
with
76 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -261,7 +261,7 @@ def EXTENSION(modname): | |
|
||
setup( | ||
name = 'xpsi', | ||
version = '2.1.1', | ||
version = '2.1.2', | ||
author = 'The X-PSI Core Team', | ||
author_email = '[email protected]', | ||
url = 'https://github.com/xpsi-group/xpsi', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
""" | ||
|
||
__version__ = "2.1.1" | ||
__version__ = "2.1.2" | ||
__author__ = "The X-PSI Core Team" | ||
|
||
try: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters