├── .gitignore ├── LICENSE ├── README.md ├── Tutorial-Binned.ipynb ├── Tutorial-Template.ipynb ├── logo.png ├── polyspec ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-39.pyc │ ├── base.cpython-39.pyc │ ├── bspec_bin.cpython-39.pyc │ ├── bspec_template.cpython-39.pyc │ ├── pspec_bin.cpython-39.pyc │ ├── tspec_bin.cpython-39.pyc │ ├── tspec_template.cpython-39.pyc │ └── weighting.cpython-39.pyc ├── base.py ├── bspec_bin.py ├── bspec_template.py ├── cython │ ├── binned_utils.c │ ├── binned_utils.pyx │ ├── commonFunctions.h │ ├── dist │ │ ├── fNL_utils-0.0.0-py3.9-linux-x86_64.egg │ │ ├── k_integrals-0.0.0-py3.9-linux-x86_64.egg │ │ └── tauNL_utils-0.0.0-py3.9-linux-x86_64.egg │ ├── fNL_utils.cpp │ ├── fNL_utils.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ └── top_level.txt │ ├── fNL_utils.pyx │ ├── ideal_fisher.c │ ├── ideal_fisher.cpp │ ├── ideal_fisher.pyx │ ├── k_integrals.c │ ├── k_integrals.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ └── top_level.txt │ ├── k_integrals.pyx │ ├── setup.py │ ├── tauNL_utils.cpp │ ├── tauNL_utils.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ └── top_level.txt │ ├── tauNL_utils.pyx │ ├── test_utils.c │ ├── test_utils.pyx │ ├── wignerSymbols-cpp.cpp │ └── wignerSymbols-cpp.h ├── pspec_bin.py ├── tspec_bin.py ├── tspec_template.py └── weighting.py ├── run_planck_binned_bispectrum.py └── run_planck_local_trispectra.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverphilcox/PolySpec/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverphilcox/PolySpec/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverphilcox/PolySpec/HEAD/README.md -------------------------------------------------------------------------------- /Tutorial-Binned.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverphilcox/PolySpec/HEAD/Tutorial-Binned.ipynb -------------------------------------------------------------------------------- /Tutorial-Template.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverphilcox/PolySpec/HEAD/Tutorial-Template.ipynb -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverphilcox/PolySpec/HEAD/logo.png -------------------------------------------------------------------------------- /polyspec/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverphilcox/PolySpec/HEAD/polyspec/__init__.py -------------------------------------------------------------------------------- /polyspec/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverphilcox/PolySpec/HEAD/polyspec/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /polyspec/__pycache__/base.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverphilcox/PolySpec/HEAD/polyspec/__pycache__/base.cpython-39.pyc -------------------------------------------------------------------------------- /polyspec/__pycache__/bspec_bin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverphilcox/PolySpec/HEAD/polyspec/__pycache__/bspec_bin.cpython-39.pyc -------------------------------------------------------------------------------- /polyspec/__pycache__/bspec_template.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverphilcox/PolySpec/HEAD/polyspec/__pycache__/bspec_template.cpython-39.pyc -------------------------------------------------------------------------------- /polyspec/__pycache__/pspec_bin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverphilcox/PolySpec/HEAD/polyspec/__pycache__/pspec_bin.cpython-39.pyc -------------------------------------------------------------------------------- /polyspec/__pycache__/tspec_bin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverphilcox/PolySpec/HEAD/polyspec/__pycache__/tspec_bin.cpython-39.pyc -------------------------------------------------------------------------------- /polyspec/__pycache__/tspec_template.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverphilcox/PolySpec/HEAD/polyspec/__pycache__/tspec_template.cpython-39.pyc -------------------------------------------------------------------------------- /polyspec/__pycache__/weighting.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverphilcox/PolySpec/HEAD/polyspec/__pycache__/weighting.cpython-39.pyc -------------------------------------------------------------------------------- /polyspec/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverphilcox/PolySpec/HEAD/polyspec/base.py -------------------------------------------------------------------------------- /polyspec/bspec_bin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverphilcox/PolySpec/HEAD/polyspec/bspec_bin.py -------------------------------------------------------------------------------- /polyspec/bspec_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverphilcox/PolySpec/HEAD/polyspec/bspec_template.py -------------------------------------------------------------------------------- /polyspec/cython/binned_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverphilcox/PolySpec/HEAD/polyspec/cython/binned_utils.c -------------------------------------------------------------------------------- /polyspec/cython/binned_utils.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverphilcox/PolySpec/HEAD/polyspec/cython/binned_utils.pyx -------------------------------------------------------------------------------- /polyspec/cython/commonFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverphilcox/PolySpec/HEAD/polyspec/cython/commonFunctions.h -------------------------------------------------------------------------------- /polyspec/cython/dist/fNL_utils-0.0.0-py3.9-linux-x86_64.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverphilcox/PolySpec/HEAD/polyspec/cython/dist/fNL_utils-0.0.0-py3.9-linux-x86_64.egg -------------------------------------------------------------------------------- /polyspec/cython/dist/k_integrals-0.0.0-py3.9-linux-x86_64.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverphilcox/PolySpec/HEAD/polyspec/cython/dist/k_integrals-0.0.0-py3.9-linux-x86_64.egg -------------------------------------------------------------------------------- /polyspec/cython/dist/tauNL_utils-0.0.0-py3.9-linux-x86_64.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverphilcox/PolySpec/HEAD/polyspec/cython/dist/tauNL_utils-0.0.0-py3.9-linux-x86_64.egg -------------------------------------------------------------------------------- /polyspec/cython/fNL_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverphilcox/PolySpec/HEAD/polyspec/cython/fNL_utils.cpp -------------------------------------------------------------------------------- /polyspec/cython/fNL_utils.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverphilcox/PolySpec/HEAD/polyspec/cython/fNL_utils.egg-info/PKG-INFO -------------------------------------------------------------------------------- /polyspec/cython/fNL_utils.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverphilcox/PolySpec/HEAD/polyspec/cython/fNL_utils.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /polyspec/cython/fNL_utils.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /polyspec/cython/fNL_utils.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | fNL_utils 2 | -------------------------------------------------------------------------------- /polyspec/cython/fNL_utils.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverphilcox/PolySpec/HEAD/polyspec/cython/fNL_utils.pyx -------------------------------------------------------------------------------- /polyspec/cython/ideal_fisher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverphilcox/PolySpec/HEAD/polyspec/cython/ideal_fisher.c -------------------------------------------------------------------------------- /polyspec/cython/ideal_fisher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverphilcox/PolySpec/HEAD/polyspec/cython/ideal_fisher.cpp -------------------------------------------------------------------------------- /polyspec/cython/ideal_fisher.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverphilcox/PolySpec/HEAD/polyspec/cython/ideal_fisher.pyx -------------------------------------------------------------------------------- /polyspec/cython/k_integrals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverphilcox/PolySpec/HEAD/polyspec/cython/k_integrals.c -------------------------------------------------------------------------------- /polyspec/cython/k_integrals.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverphilcox/PolySpec/HEAD/polyspec/cython/k_integrals.egg-info/PKG-INFO -------------------------------------------------------------------------------- /polyspec/cython/k_integrals.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverphilcox/PolySpec/HEAD/polyspec/cython/k_integrals.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /polyspec/cython/k_integrals.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /polyspec/cython/k_integrals.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | k_integrals 2 | -------------------------------------------------------------------------------- /polyspec/cython/k_integrals.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverphilcox/PolySpec/HEAD/polyspec/cython/k_integrals.pyx -------------------------------------------------------------------------------- /polyspec/cython/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverphilcox/PolySpec/HEAD/polyspec/cython/setup.py -------------------------------------------------------------------------------- /polyspec/cython/tauNL_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverphilcox/PolySpec/HEAD/polyspec/cython/tauNL_utils.cpp -------------------------------------------------------------------------------- /polyspec/cython/tauNL_utils.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverphilcox/PolySpec/HEAD/polyspec/cython/tauNL_utils.egg-info/PKG-INFO -------------------------------------------------------------------------------- /polyspec/cython/tauNL_utils.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverphilcox/PolySpec/HEAD/polyspec/cython/tauNL_utils.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /polyspec/cython/tauNL_utils.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /polyspec/cython/tauNL_utils.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | tauNL_utils 2 | -------------------------------------------------------------------------------- /polyspec/cython/tauNL_utils.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverphilcox/PolySpec/HEAD/polyspec/cython/tauNL_utils.pyx -------------------------------------------------------------------------------- /polyspec/cython/test_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverphilcox/PolySpec/HEAD/polyspec/cython/test_utils.c -------------------------------------------------------------------------------- /polyspec/cython/test_utils.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverphilcox/PolySpec/HEAD/polyspec/cython/test_utils.pyx -------------------------------------------------------------------------------- /polyspec/cython/wignerSymbols-cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverphilcox/PolySpec/HEAD/polyspec/cython/wignerSymbols-cpp.cpp -------------------------------------------------------------------------------- /polyspec/cython/wignerSymbols-cpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverphilcox/PolySpec/HEAD/polyspec/cython/wignerSymbols-cpp.h -------------------------------------------------------------------------------- /polyspec/pspec_bin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverphilcox/PolySpec/HEAD/polyspec/pspec_bin.py -------------------------------------------------------------------------------- /polyspec/tspec_bin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverphilcox/PolySpec/HEAD/polyspec/tspec_bin.py -------------------------------------------------------------------------------- /polyspec/tspec_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverphilcox/PolySpec/HEAD/polyspec/tspec_template.py -------------------------------------------------------------------------------- /polyspec/weighting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverphilcox/PolySpec/HEAD/polyspec/weighting.py -------------------------------------------------------------------------------- /run_planck_binned_bispectrum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverphilcox/PolySpec/HEAD/run_planck_binned_bispectrum.py -------------------------------------------------------------------------------- /run_planck_local_trispectra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliverphilcox/PolySpec/HEAD/run_planck_local_trispectra.py --------------------------------------------------------------------------------