├── .gitignore ├── COPYING ├── LICENSE ├── README.md ├── docs ├── .buildinfo ├── .nojekyll ├── FAQs.html ├── _images │ ├── bayhunt_flowchart.png │ ├── baywatch0082.png │ ├── c_covfix.png │ ├── c_currentmodels.png │ ├── c_iiter_likes_example.png │ ├── c_posteriormodels.png │ ├── exploration.png │ ├── exploration_chains.png │ └── st3_rrf_est.png ├── _sources │ ├── FAQs.rst.txt │ ├── algorithm.rst.txt │ ├── appendix.rst.txt │ ├── index.rst.txt │ ├── introduction.rst.txt │ ├── references.rst.txt │ └── tutorial.rst.txt ├── _static │ ├── alabaster.css │ ├── basic.css │ ├── bayhunt_flowchart.png │ ├── baywatch.mp4 │ ├── baywatch0082.png │ ├── c_covfix.png │ ├── c_currentmodels.png │ ├── c_iiter_likes_example.png │ ├── c_posteriormodels.png │ ├── custom.css │ ├── doctools.js │ ├── documentation_options.js │ ├── exploration.png │ ├── exploration_chains.png │ ├── file.png │ ├── jquery-3.4.1.js │ ├── jquery-3.5.1.js │ ├── jquery.js │ ├── language_data.js │ ├── minus.png │ ├── plus.png │ ├── pygments.css │ ├── searchtools.js │ ├── st3_rrf_est.png │ ├── underscore-1.3.1.js │ └── underscore.js ├── algorithm.html ├── appendix.html ├── genindex.html ├── index.html ├── introduction.html ├── objects.inv ├── references.html ├── search.html ├── searchindex.js └── tutorial.html ├── documentation ├── BayHunter_v2.1_documentation.pdf ├── Makefile ├── make.bat ├── release_github_pages.sh └── source │ ├── FAQs.rst │ ├── _static │ ├── bayhunt_flowchart.png │ ├── baywatch.mp4 │ ├── baywatch0082.png │ ├── c_covfix.png │ ├── c_currentmodels.png │ ├── c_iiter_likes_example.png │ ├── c_posteriormodels.png │ ├── exploration.png │ ├── exploration_chains.png │ └── st3_rrf_est.png │ ├── algorithm.rst │ ├── appendix.rst │ ├── conf.py │ ├── index.rst │ ├── introduction.rst │ ├── references.rst │ └── tutorial.rst ├── setup.py ├── src ├── BayWatch.py ├── Models.py ├── Plotting.py ├── SingleChain.py ├── SynthObs.py ├── Targets.py ├── __init__.py ├── defaults │ └── defaults.ini ├── extensions │ ├── rfmini │ │ ├── Complex.h │ │ ├── README.md │ │ ├── cmat2.h │ │ ├── defaults.h │ │ ├── fork.cpp │ │ ├── greens.cpp │ │ ├── model.cpp │ │ ├── model.h │ │ ├── pd.cpp │ │ ├── rf.h │ │ ├── rfmini.pyx │ │ ├── synrf.cpp │ │ ├── synrf.h │ │ ├── wave.h │ │ └── wrap.cpp │ └── surfdisp96.f ├── mcmcOptimizer.py ├── rfmini_modrf.py ├── scripts │ └── baywatch ├── surf96_modsw.py └── utils.py ├── templates ├── myfwd.py └── mytarget.py └── tutorial ├── config.ini ├── create_testdata.py ├── estimate_rRF.py ├── observed ├── st3_ldispgr.dat ├── st3_ldispph.dat ├── st3_mod.dat ├── st3_prf.dat ├── st3_rdispgr.dat ├── st3_rdispph.dat └── st3_srf.dat └── tutorialhunt.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/COPYING -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/README.md -------------------------------------------------------------------------------- /docs/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/docs/.buildinfo -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/FAQs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/docs/FAQs.html -------------------------------------------------------------------------------- /docs/_images/bayhunt_flowchart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/docs/_images/bayhunt_flowchart.png -------------------------------------------------------------------------------- /docs/_images/baywatch0082.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/docs/_images/baywatch0082.png -------------------------------------------------------------------------------- /docs/_images/c_covfix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/docs/_images/c_covfix.png -------------------------------------------------------------------------------- /docs/_images/c_currentmodels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/docs/_images/c_currentmodels.png -------------------------------------------------------------------------------- /docs/_images/c_iiter_likes_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/docs/_images/c_iiter_likes_example.png -------------------------------------------------------------------------------- /docs/_images/c_posteriormodels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/docs/_images/c_posteriormodels.png -------------------------------------------------------------------------------- /docs/_images/exploration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/docs/_images/exploration.png -------------------------------------------------------------------------------- /docs/_images/exploration_chains.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/docs/_images/exploration_chains.png -------------------------------------------------------------------------------- /docs/_images/st3_rrf_est.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/docs/_images/st3_rrf_est.png -------------------------------------------------------------------------------- /docs/_sources/FAQs.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/docs/_sources/FAQs.rst.txt -------------------------------------------------------------------------------- /docs/_sources/algorithm.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/docs/_sources/algorithm.rst.txt -------------------------------------------------------------------------------- /docs/_sources/appendix.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/docs/_sources/appendix.rst.txt -------------------------------------------------------------------------------- /docs/_sources/index.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/docs/_sources/index.rst.txt -------------------------------------------------------------------------------- /docs/_sources/introduction.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/docs/_sources/introduction.rst.txt -------------------------------------------------------------------------------- /docs/_sources/references.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/docs/_sources/references.rst.txt -------------------------------------------------------------------------------- /docs/_sources/tutorial.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/docs/_sources/tutorial.rst.txt -------------------------------------------------------------------------------- /docs/_static/alabaster.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/docs/_static/alabaster.css -------------------------------------------------------------------------------- /docs/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/docs/_static/basic.css -------------------------------------------------------------------------------- /docs/_static/bayhunt_flowchart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/docs/_static/bayhunt_flowchart.png -------------------------------------------------------------------------------- /docs/_static/baywatch.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/docs/_static/baywatch.mp4 -------------------------------------------------------------------------------- /docs/_static/baywatch0082.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/docs/_static/baywatch0082.png -------------------------------------------------------------------------------- /docs/_static/c_covfix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/docs/_static/c_covfix.png -------------------------------------------------------------------------------- /docs/_static/c_currentmodels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/docs/_static/c_currentmodels.png -------------------------------------------------------------------------------- /docs/_static/c_iiter_likes_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/docs/_static/c_iiter_likes_example.png -------------------------------------------------------------------------------- /docs/_static/c_posteriormodels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/docs/_static/c_posteriormodels.png -------------------------------------------------------------------------------- /docs/_static/custom.css: -------------------------------------------------------------------------------- 1 | /* This file intentionally left blank. */ 2 | -------------------------------------------------------------------------------- /docs/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/docs/_static/doctools.js -------------------------------------------------------------------------------- /docs/_static/documentation_options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/docs/_static/documentation_options.js -------------------------------------------------------------------------------- /docs/_static/exploration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/docs/_static/exploration.png -------------------------------------------------------------------------------- /docs/_static/exploration_chains.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/docs/_static/exploration_chains.png -------------------------------------------------------------------------------- /docs/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/docs/_static/file.png -------------------------------------------------------------------------------- /docs/_static/jquery-3.4.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/docs/_static/jquery-3.4.1.js -------------------------------------------------------------------------------- /docs/_static/jquery-3.5.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/docs/_static/jquery-3.5.1.js -------------------------------------------------------------------------------- /docs/_static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/docs/_static/jquery.js -------------------------------------------------------------------------------- /docs/_static/language_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/docs/_static/language_data.js -------------------------------------------------------------------------------- /docs/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/docs/_static/minus.png -------------------------------------------------------------------------------- /docs/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/docs/_static/plus.png -------------------------------------------------------------------------------- /docs/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/docs/_static/pygments.css -------------------------------------------------------------------------------- /docs/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/docs/_static/searchtools.js -------------------------------------------------------------------------------- /docs/_static/st3_rrf_est.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/docs/_static/st3_rrf_est.png -------------------------------------------------------------------------------- /docs/_static/underscore-1.3.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/docs/_static/underscore-1.3.1.js -------------------------------------------------------------------------------- /docs/_static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/docs/_static/underscore.js -------------------------------------------------------------------------------- /docs/algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/docs/algorithm.html -------------------------------------------------------------------------------- /docs/appendix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/docs/appendix.html -------------------------------------------------------------------------------- /docs/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/docs/genindex.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/docs/introduction.html -------------------------------------------------------------------------------- /docs/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/docs/objects.inv -------------------------------------------------------------------------------- /docs/references.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/docs/references.html -------------------------------------------------------------------------------- /docs/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/docs/search.html -------------------------------------------------------------------------------- /docs/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/docs/searchindex.js -------------------------------------------------------------------------------- /docs/tutorial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/docs/tutorial.html -------------------------------------------------------------------------------- /documentation/BayHunter_v2.1_documentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/documentation/BayHunter_v2.1_documentation.pdf -------------------------------------------------------------------------------- /documentation/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/documentation/Makefile -------------------------------------------------------------------------------- /documentation/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/documentation/make.bat -------------------------------------------------------------------------------- /documentation/release_github_pages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/documentation/release_github_pages.sh -------------------------------------------------------------------------------- /documentation/source/FAQs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/documentation/source/FAQs.rst -------------------------------------------------------------------------------- /documentation/source/_static/bayhunt_flowchart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/documentation/source/_static/bayhunt_flowchart.png -------------------------------------------------------------------------------- /documentation/source/_static/baywatch.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/documentation/source/_static/baywatch.mp4 -------------------------------------------------------------------------------- /documentation/source/_static/baywatch0082.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/documentation/source/_static/baywatch0082.png -------------------------------------------------------------------------------- /documentation/source/_static/c_covfix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/documentation/source/_static/c_covfix.png -------------------------------------------------------------------------------- /documentation/source/_static/c_currentmodels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/documentation/source/_static/c_currentmodels.png -------------------------------------------------------------------------------- /documentation/source/_static/c_iiter_likes_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/documentation/source/_static/c_iiter_likes_example.png -------------------------------------------------------------------------------- /documentation/source/_static/c_posteriormodels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/documentation/source/_static/c_posteriormodels.png -------------------------------------------------------------------------------- /documentation/source/_static/exploration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/documentation/source/_static/exploration.png -------------------------------------------------------------------------------- /documentation/source/_static/exploration_chains.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/documentation/source/_static/exploration_chains.png -------------------------------------------------------------------------------- /documentation/source/_static/st3_rrf_est.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/documentation/source/_static/st3_rrf_est.png -------------------------------------------------------------------------------- /documentation/source/algorithm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/documentation/source/algorithm.rst -------------------------------------------------------------------------------- /documentation/source/appendix.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/documentation/source/appendix.rst -------------------------------------------------------------------------------- /documentation/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/documentation/source/conf.py -------------------------------------------------------------------------------- /documentation/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/documentation/source/index.rst -------------------------------------------------------------------------------- /documentation/source/introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/documentation/source/introduction.rst -------------------------------------------------------------------------------- /documentation/source/references.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/documentation/source/references.rst -------------------------------------------------------------------------------- /documentation/source/tutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/documentation/source/tutorial.rst -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/setup.py -------------------------------------------------------------------------------- /src/BayWatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/src/BayWatch.py -------------------------------------------------------------------------------- /src/Models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/src/Models.py -------------------------------------------------------------------------------- /src/Plotting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/src/Plotting.py -------------------------------------------------------------------------------- /src/SingleChain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/src/SingleChain.py -------------------------------------------------------------------------------- /src/SynthObs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/src/SynthObs.py -------------------------------------------------------------------------------- /src/Targets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/src/Targets.py -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/src/__init__.py -------------------------------------------------------------------------------- /src/defaults/defaults.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/src/defaults/defaults.ini -------------------------------------------------------------------------------- /src/extensions/rfmini/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/src/extensions/rfmini/Complex.h -------------------------------------------------------------------------------- /src/extensions/rfmini/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/src/extensions/rfmini/README.md -------------------------------------------------------------------------------- /src/extensions/rfmini/cmat2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/src/extensions/rfmini/cmat2.h -------------------------------------------------------------------------------- /src/extensions/rfmini/defaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/src/extensions/rfmini/defaults.h -------------------------------------------------------------------------------- /src/extensions/rfmini/fork.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/src/extensions/rfmini/fork.cpp -------------------------------------------------------------------------------- /src/extensions/rfmini/greens.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/src/extensions/rfmini/greens.cpp -------------------------------------------------------------------------------- /src/extensions/rfmini/model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/src/extensions/rfmini/model.cpp -------------------------------------------------------------------------------- /src/extensions/rfmini/model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/src/extensions/rfmini/model.h -------------------------------------------------------------------------------- /src/extensions/rfmini/pd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/src/extensions/rfmini/pd.cpp -------------------------------------------------------------------------------- /src/extensions/rfmini/rf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/src/extensions/rfmini/rf.h -------------------------------------------------------------------------------- /src/extensions/rfmini/rfmini.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/src/extensions/rfmini/rfmini.pyx -------------------------------------------------------------------------------- /src/extensions/rfmini/synrf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/src/extensions/rfmini/synrf.cpp -------------------------------------------------------------------------------- /src/extensions/rfmini/synrf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/src/extensions/rfmini/synrf.h -------------------------------------------------------------------------------- /src/extensions/rfmini/wave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/src/extensions/rfmini/wave.h -------------------------------------------------------------------------------- /src/extensions/rfmini/wrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/src/extensions/rfmini/wrap.cpp -------------------------------------------------------------------------------- /src/extensions/surfdisp96.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/src/extensions/surfdisp96.f -------------------------------------------------------------------------------- /src/mcmcOptimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/src/mcmcOptimizer.py -------------------------------------------------------------------------------- /src/rfmini_modrf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/src/rfmini_modrf.py -------------------------------------------------------------------------------- /src/scripts/baywatch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/src/scripts/baywatch -------------------------------------------------------------------------------- /src/surf96_modsw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/src/surf96_modsw.py -------------------------------------------------------------------------------- /src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/src/utils.py -------------------------------------------------------------------------------- /templates/myfwd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/templates/myfwd.py -------------------------------------------------------------------------------- /templates/mytarget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/templates/mytarget.py -------------------------------------------------------------------------------- /tutorial/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/tutorial/config.ini -------------------------------------------------------------------------------- /tutorial/create_testdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/tutorial/create_testdata.py -------------------------------------------------------------------------------- /tutorial/estimate_rRF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/tutorial/estimate_rRF.py -------------------------------------------------------------------------------- /tutorial/observed/st3_ldispgr.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/tutorial/observed/st3_ldispgr.dat -------------------------------------------------------------------------------- /tutorial/observed/st3_ldispph.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/tutorial/observed/st3_ldispph.dat -------------------------------------------------------------------------------- /tutorial/observed/st3_mod.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/tutorial/observed/st3_mod.dat -------------------------------------------------------------------------------- /tutorial/observed/st3_prf.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/tutorial/observed/st3_prf.dat -------------------------------------------------------------------------------- /tutorial/observed/st3_rdispgr.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/tutorial/observed/st3_rdispgr.dat -------------------------------------------------------------------------------- /tutorial/observed/st3_rdispph.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/tutorial/observed/st3_rdispph.dat -------------------------------------------------------------------------------- /tutorial/observed/st3_srf.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/tutorial/observed/st3_srf.dat -------------------------------------------------------------------------------- /tutorial/tutorialhunt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenndrei/BayHunter/HEAD/tutorial/tutorialhunt.py --------------------------------------------------------------------------------