Skip to content

Commit

Permalink
Update to Cobaya 3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
mtristram committed Oct 25, 2023
1 parent 0c7421b commit e843b69
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 6 deletions.
45 changes: 43 additions & 2 deletions planck_2020_lollipop/_lollipop.bibtex
Original file line number Diff line number Diff line change
@@ -1,6 +1,27 @@
Planck low-multipole Lollipop likelihood from \cite{Mangilli_2015}
Planck low-multipole Lollipop likelihood from \cite{Tristram:2021}
using on approximation of the likelihood based on \cite{Hamimeche:2008,Mangilli:2015}
@article{Mangilli_2015,
@ARTICLE{Tristram:2021,
author = {{Tristram}, M. and {Banday}, A.~J. and {G{\'o}rski}, K.~M. and {Keskitalo}, R. and {Lawrence}, C.~R. and {Andersen}, K.~J. and {Barreiro}, R.~B. and {Borrill}, J. and {Eriksen}, H.~K. and {Fernandez-Cobos}, R. and {Kisner}, T.~S. and {Mart{\'\i}nez-Gonz{\'a}lez}, E. and {Partridge}, B. and {Scott}, D. and {Svalheim}, T.~L. and {Thommesen}, H. and {Wehus}, I.~K.},
title = "{Planck constraints on the tensor-to-scalar ratio}",
journal = {\aap},
keywords = {cosmology: observations, cosmic background radiation, cosmological parameters, gravitational waves, methods: data analysis, Astrophysics - Cosmology and Nongalactic Astrophysics},
year = 2021,
month = mar,
volume = {647},
eid = {A128},
pages = {A128},
doi = {10.1051/0004-6361/202039585},
archivePrefix = {arXiv},
eprint = {2010.01139},
primaryClass = {astro-ph.CO},
adsurl = {https://ui.adsabs.harvard.edu/abs/2021A&A...647A.128T},
adsnote = {Provided by the SAO/NASA Astrophysics Data System}
}


@article{Mangilli:2015,
title={Large-scale cosmic microwave background temperature and polarization cross-spectra likelihoods},
volume={453},
ISSN={1365-2966},
Expand All @@ -14,3 +35,23 @@ Planck low-multipole Lollipop likelihood from \cite{Mangilli_2015}
month={Sep},
pages={3175–3190}
}

@ARTICLE{Hamimeche:2008,
author = {{Hamimeche}, Samira and {Lewis}, Antony},
title = "{Likelihood analysis of CMB temperature and polarization power spectra}",
journal = {\prd},
keywords = {98.70.Vc, Background radiations, Astrophysics},
year = 2008,
month = may,
volume = {77},
number = {10},
eid = {103013},
pages = {103013},
doi = {10.1103/PhysRevD.77.103013},
archivePrefix = {arXiv},
eprint = {0801.0554},
primaryClass = {astro-ph},
adsurl = {https://ui.adsabs.harvard.edu/abs/2008PhRvD..77j3013H},
adsnote = {Provided by the SAO/NASA Astrophysics Data System}
}

8 changes: 4 additions & 4 deletions planck_2020_lollipop/lollipop.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ def get_requirements(self):
return dict(Cl={mode: self.bins.lmax for mode in ["ee", "bb"]})

def logp(self, **params_values):
cl = self.theory.get_Cl(ell_factor=False)
cl = self.provider.get_Cl(ell_factor=False)
return self.loglike(cl, **params_values)

def loglike(self, cl, **params_values):
Expand Down Expand Up @@ -219,23 +219,23 @@ def is_installed(cls, **kwargs):

class lowlEB(_LollipopLikelihood):
"""
Low-L Likelihood for Polarized Planck for EE+BB+EB
Low-L Likelihood for Polarized Planck EE+BB+EB
Spectra-based likelihood based on Hamimeche-Lewis for cross-spectra
applied on CMB component separated map
"""


class lowlE(_LollipopLikelihood):
"""
Low-L Likelihood for Polarized Planck for EE
Low-L Likelihood for Polarized Planck EE
Spectra-based likelihood based on Hamimeche-Lewis for cross-spectra
applied on CMB component separated map
"""


class lowlB(_LollipopLikelihood):
"""
Low-L Likelihood for Polarized Planck for BB
Low-L Likelihood for Polarized Planck BB
Spectra-based likelihood based on Hamimeche-Lewis for cross-spectra
applied on CMB component separated map
"""

0 comments on commit e843b69

Please sign in to comment.