├── .github └── workflows │ ├── python-package.yml │ └── python-publish.yml ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── RMtools_1D ├── __init__.py ├── calculate_RMSF.py ├── cats │ ├── catComplex.csv │ ├── cat_simple_doQUfit.bat │ ├── catalogue.csv │ ├── catalogue1.csv │ └── testCat.dat ├── clean_model.py ├── do_QUfit_1D_mnest.py ├── do_RMclean_1D.py ├── do_RMsynth_1D.py ├── do_RMsynth_1D_fromFITS.py ├── mk_test_ascii_data.py ├── models_ns │ ├── __init__.py │ ├── m1.py │ ├── m11.py │ ├── m111.py │ ├── m12.py │ ├── m2.py │ ├── m3.py │ ├── m4.py │ ├── m5.py │ ├── m6.py │ └── m7.py ├── rmtools_bwdepol.py └── rmtools_bwpredict.py ├── RMtools_3D ├── RMpeakfit_3D.py ├── __init__.py ├── assemble_chunks.py ├── catalogue.csv ├── create_chunks.py ├── do_RMclean_3D.py ├── do_RMsynth_3D.py ├── do_fitIcube.py ├── extract_region.py ├── make_freq_file.py ├── mk_test_cube_data.py └── rescale_I_model_3D.py ├── RMutils ├── __init__.py ├── mpfit.py ├── normalize.py ├── util_FITS.py ├── util_RM.py ├── util_misc.py ├── util_plotFITS.py ├── util_plotTk.py ├── util_rec.py └── util_testing.py ├── VERSION_HISTORY.txt ├── external └── finufft_LICENSE.md ├── setup.py └── tests ├── QA_test.py ├── RMclean1D_referencevalues.json ├── RMsynth1D_referencevalues.json ├── RMsynth1D_testdata.dat ├── __init__.py ├── cli_test.py ├── helper_test.py ├── import_test.py ├── nufft_test.py └── test_stokesIfit.py /.github/workflows/python-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIRADA-Tools/RM-Tools/HEAD/.github/workflows/python-package.yml -------------------------------------------------------------------------------- /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIRADA-Tools/RM-Tools/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIRADA-Tools/RM-Tools/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIRADA-Tools/RM-Tools/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIRADA-Tools/RM-Tools/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIRADA-Tools/RM-Tools/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIRADA-Tools/RM-Tools/HEAD/README.md -------------------------------------------------------------------------------- /RMtools_1D/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIRADA-Tools/RM-Tools/HEAD/RMtools_1D/__init__.py -------------------------------------------------------------------------------- /RMtools_1D/calculate_RMSF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIRADA-Tools/RM-Tools/HEAD/RMtools_1D/calculate_RMSF.py -------------------------------------------------------------------------------- /RMtools_1D/cats/catComplex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIRADA-Tools/RM-Tools/HEAD/RMtools_1D/cats/catComplex.csv -------------------------------------------------------------------------------- /RMtools_1D/cats/cat_simple_doQUfit.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIRADA-Tools/RM-Tools/HEAD/RMtools_1D/cats/cat_simple_doQUfit.bat -------------------------------------------------------------------------------- /RMtools_1D/cats/catalogue.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIRADA-Tools/RM-Tools/HEAD/RMtools_1D/cats/catalogue.csv -------------------------------------------------------------------------------- /RMtools_1D/cats/catalogue1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIRADA-Tools/RM-Tools/HEAD/RMtools_1D/cats/catalogue1.csv -------------------------------------------------------------------------------- /RMtools_1D/cats/testCat.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIRADA-Tools/RM-Tools/HEAD/RMtools_1D/cats/testCat.dat -------------------------------------------------------------------------------- /RMtools_1D/clean_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIRADA-Tools/RM-Tools/HEAD/RMtools_1D/clean_model.py -------------------------------------------------------------------------------- /RMtools_1D/do_QUfit_1D_mnest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIRADA-Tools/RM-Tools/HEAD/RMtools_1D/do_QUfit_1D_mnest.py -------------------------------------------------------------------------------- /RMtools_1D/do_RMclean_1D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIRADA-Tools/RM-Tools/HEAD/RMtools_1D/do_RMclean_1D.py -------------------------------------------------------------------------------- /RMtools_1D/do_RMsynth_1D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIRADA-Tools/RM-Tools/HEAD/RMtools_1D/do_RMsynth_1D.py -------------------------------------------------------------------------------- /RMtools_1D/do_RMsynth_1D_fromFITS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIRADA-Tools/RM-Tools/HEAD/RMtools_1D/do_RMsynth_1D_fromFITS.py -------------------------------------------------------------------------------- /RMtools_1D/mk_test_ascii_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIRADA-Tools/RM-Tools/HEAD/RMtools_1D/mk_test_ascii_data.py -------------------------------------------------------------------------------- /RMtools_1D/models_ns/__init__.py: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env python 2 | __all__ = [""] 3 | -------------------------------------------------------------------------------- /RMtools_1D/models_ns/m1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIRADA-Tools/RM-Tools/HEAD/RMtools_1D/models_ns/m1.py -------------------------------------------------------------------------------- /RMtools_1D/models_ns/m11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIRADA-Tools/RM-Tools/HEAD/RMtools_1D/models_ns/m11.py -------------------------------------------------------------------------------- /RMtools_1D/models_ns/m111.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIRADA-Tools/RM-Tools/HEAD/RMtools_1D/models_ns/m111.py -------------------------------------------------------------------------------- /RMtools_1D/models_ns/m12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIRADA-Tools/RM-Tools/HEAD/RMtools_1D/models_ns/m12.py -------------------------------------------------------------------------------- /RMtools_1D/models_ns/m2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIRADA-Tools/RM-Tools/HEAD/RMtools_1D/models_ns/m2.py -------------------------------------------------------------------------------- /RMtools_1D/models_ns/m3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIRADA-Tools/RM-Tools/HEAD/RMtools_1D/models_ns/m3.py -------------------------------------------------------------------------------- /RMtools_1D/models_ns/m4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIRADA-Tools/RM-Tools/HEAD/RMtools_1D/models_ns/m4.py -------------------------------------------------------------------------------- /RMtools_1D/models_ns/m5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIRADA-Tools/RM-Tools/HEAD/RMtools_1D/models_ns/m5.py -------------------------------------------------------------------------------- /RMtools_1D/models_ns/m6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIRADA-Tools/RM-Tools/HEAD/RMtools_1D/models_ns/m6.py -------------------------------------------------------------------------------- /RMtools_1D/models_ns/m7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIRADA-Tools/RM-Tools/HEAD/RMtools_1D/models_ns/m7.py -------------------------------------------------------------------------------- /RMtools_1D/rmtools_bwdepol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIRADA-Tools/RM-Tools/HEAD/RMtools_1D/rmtools_bwdepol.py -------------------------------------------------------------------------------- /RMtools_1D/rmtools_bwpredict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIRADA-Tools/RM-Tools/HEAD/RMtools_1D/rmtools_bwpredict.py -------------------------------------------------------------------------------- /RMtools_3D/RMpeakfit_3D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIRADA-Tools/RM-Tools/HEAD/RMtools_3D/RMpeakfit_3D.py -------------------------------------------------------------------------------- /RMtools_3D/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIRADA-Tools/RM-Tools/HEAD/RMtools_3D/__init__.py -------------------------------------------------------------------------------- /RMtools_3D/assemble_chunks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIRADA-Tools/RM-Tools/HEAD/RMtools_3D/assemble_chunks.py -------------------------------------------------------------------------------- /RMtools_3D/catalogue.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIRADA-Tools/RM-Tools/HEAD/RMtools_3D/catalogue.csv -------------------------------------------------------------------------------- /RMtools_3D/create_chunks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIRADA-Tools/RM-Tools/HEAD/RMtools_3D/create_chunks.py -------------------------------------------------------------------------------- /RMtools_3D/do_RMclean_3D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIRADA-Tools/RM-Tools/HEAD/RMtools_3D/do_RMclean_3D.py -------------------------------------------------------------------------------- /RMtools_3D/do_RMsynth_3D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIRADA-Tools/RM-Tools/HEAD/RMtools_3D/do_RMsynth_3D.py -------------------------------------------------------------------------------- /RMtools_3D/do_fitIcube.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIRADA-Tools/RM-Tools/HEAD/RMtools_3D/do_fitIcube.py -------------------------------------------------------------------------------- /RMtools_3D/extract_region.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIRADA-Tools/RM-Tools/HEAD/RMtools_3D/extract_region.py -------------------------------------------------------------------------------- /RMtools_3D/make_freq_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIRADA-Tools/RM-Tools/HEAD/RMtools_3D/make_freq_file.py -------------------------------------------------------------------------------- /RMtools_3D/mk_test_cube_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIRADA-Tools/RM-Tools/HEAD/RMtools_3D/mk_test_cube_data.py -------------------------------------------------------------------------------- /RMtools_3D/rescale_I_model_3D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIRADA-Tools/RM-Tools/HEAD/RMtools_3D/rescale_I_model_3D.py -------------------------------------------------------------------------------- /RMutils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIRADA-Tools/RM-Tools/HEAD/RMutils/__init__.py -------------------------------------------------------------------------------- /RMutils/mpfit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIRADA-Tools/RM-Tools/HEAD/RMutils/mpfit.py -------------------------------------------------------------------------------- /RMutils/normalize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIRADA-Tools/RM-Tools/HEAD/RMutils/normalize.py -------------------------------------------------------------------------------- /RMutils/util_FITS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIRADA-Tools/RM-Tools/HEAD/RMutils/util_FITS.py -------------------------------------------------------------------------------- /RMutils/util_RM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIRADA-Tools/RM-Tools/HEAD/RMutils/util_RM.py -------------------------------------------------------------------------------- /RMutils/util_misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIRADA-Tools/RM-Tools/HEAD/RMutils/util_misc.py -------------------------------------------------------------------------------- /RMutils/util_plotFITS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIRADA-Tools/RM-Tools/HEAD/RMutils/util_plotFITS.py -------------------------------------------------------------------------------- /RMutils/util_plotTk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIRADA-Tools/RM-Tools/HEAD/RMutils/util_plotTk.py -------------------------------------------------------------------------------- /RMutils/util_rec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIRADA-Tools/RM-Tools/HEAD/RMutils/util_rec.py -------------------------------------------------------------------------------- /RMutils/util_testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIRADA-Tools/RM-Tools/HEAD/RMutils/util_testing.py -------------------------------------------------------------------------------- /VERSION_HISTORY.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIRADA-Tools/RM-Tools/HEAD/VERSION_HISTORY.txt -------------------------------------------------------------------------------- /external/finufft_LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIRADA-Tools/RM-Tools/HEAD/external/finufft_LICENSE.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIRADA-Tools/RM-Tools/HEAD/setup.py -------------------------------------------------------------------------------- /tests/QA_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIRADA-Tools/RM-Tools/HEAD/tests/QA_test.py -------------------------------------------------------------------------------- /tests/RMclean1D_referencevalues.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIRADA-Tools/RM-Tools/HEAD/tests/RMclean1D_referencevalues.json -------------------------------------------------------------------------------- /tests/RMsynth1D_referencevalues.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIRADA-Tools/RM-Tools/HEAD/tests/RMsynth1D_referencevalues.json -------------------------------------------------------------------------------- /tests/RMsynth1D_testdata.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIRADA-Tools/RM-Tools/HEAD/tests/RMsynth1D_testdata.dat -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/cli_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIRADA-Tools/RM-Tools/HEAD/tests/cli_test.py -------------------------------------------------------------------------------- /tests/helper_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIRADA-Tools/RM-Tools/HEAD/tests/helper_test.py -------------------------------------------------------------------------------- /tests/import_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIRADA-Tools/RM-Tools/HEAD/tests/import_test.py -------------------------------------------------------------------------------- /tests/nufft_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIRADA-Tools/RM-Tools/HEAD/tests/nufft_test.py -------------------------------------------------------------------------------- /tests/test_stokesIfit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIRADA-Tools/RM-Tools/HEAD/tests/test_stokesIfit.py --------------------------------------------------------------------------------