-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
71 additions
and
6 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
File renamed without changes.
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 |
---|---|---|
|
@@ -2,17 +2,17 @@ | |
|
||
setup( | ||
name = "WMAPLike", | ||
version = "0.1.0", | ||
version = "0.1.1", | ||
description = "WMAP DR5 likelihood for cobaya", | ||
author = "Hidde Jense", | ||
author_email = "[email protected]", | ||
|
||
zip_safe = True, | ||
packages = find_packages(), | ||
python_requires = ">=3.7", | ||
python_requires = ">=3.8", | ||
install_requires = [ | ||
"cobaya>=3.1.0", | ||
"cobaya>=3.3.0", | ||
"astropy" | ||
], | ||
package_data = { "wmaplike" : [ "WMAPLike.yaml" ] } | ||
package_data = { "wmaplike" : [ "*.yaml", "tests/*" ] }, | ||
) |
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 |
---|---|---|
@@ -1 +1 @@ | ||
from .wmap import WMAPLike | ||
from .wmap import WMAPLike, WMAPBestFitv5 |
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 |
---|---|---|
@@ -0,0 +1,66 @@ | ||
import pytest # noqa F401 | ||
import numpy as np | ||
from cobaya.model import get_model | ||
|
||
info = { | ||
"params": { | ||
"cl_amp": 1.0 | ||
}, | ||
"theory": { | ||
"wmaplike.WMAPBestFitv5": None | ||
}, | ||
"likelihood": { | ||
"wmaplike.WMAPLike": { | ||
"use_lowl_TT": True, | ||
"use_highl_TT": True, | ||
"use_highl_TE": True, | ||
"use_highl_TB": False, | ||
"use_lowl_pol": False, | ||
"use_lowl_TBEB": False, | ||
"use_highl_TT_beam_ptsrc": False, | ||
"use_sz": False, | ||
"debug": True | ||
} | ||
}, | ||
"sampler": {"evaluate": None}, | ||
"debug": True | ||
} | ||
|
||
chisqr_expected = { | ||
"lowl_TT_gibbs" : -13.614869, | ||
"MASTER_TTTT" : 1200.005224, | ||
"MASTER_TETE_chi2": 831.787122, | ||
"MASTER_TETE_det": 3605.526233, | ||
"MASTER_TBTB_chi2": 775.110063, | ||
"MASTER_TBTB_det": 3610.385517, | ||
"TEEEBB_chi2" : 1320.994614, | ||
"TEEEBB_det" : 692.874562, | ||
"beamptsrc_TT" : 0.735565 | ||
} | ||
|
||
def test_import(): | ||
import wmaplike # noqa F401 | ||
|
||
|
||
def test_model(): | ||
model = get_model(info) # noqa F841 | ||
|
||
|
||
def test_highl(): | ||
info["likelihood"] = { | ||
"wmaplike.WMAPLike": { | ||
"use_lowl_TT": True, | ||
"use_highl_TT": True, | ||
"use_highl_TE": True, | ||
"use_highl_TB": False, | ||
"use_lowl_pol": False, | ||
"use_lowl_TBEB": False, | ||
"use_highl_TT_beam_ptsrc": False, | ||
"use_sz": False, | ||
"debug": True | ||
} | ||
} | ||
|
||
model = get_model(info) | ||
model.loglikes() | ||
|