├── .gitignore ├── DC_locals.py.in ├── DC_pars.md ├── DC_run.md ├── DC_run.py ├── DC_script.py ├── IQA_script.py ├── LICENSE ├── Overview.md ├── Preparation.md ├── Quick_start.md ├── README.md ├── configure ├── configure.ac ├── data └── README.md ├── datacomb.py ├── md ├── bench.md ├── bloopers.md ├── datacomb.md ├── hybrid.md ├── m100.md ├── qac.md ├── skymodel.md ├── stats.md └── tclean.md ├── paper └── README ├── templates ├── DC_pars_GMC-b.py ├── DC_pars_GMC-bench.py ├── DC_pars_GMC-c.py ├── DC_pars_Lup3mms.py ├── DC_pars_M100.py ├── DC_pars_NGC346.py ├── DC_pars_Template.py └── DC_pars_pointGauss.py └── tp2vis.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teuben/DataComb/HEAD/.gitignore -------------------------------------------------------------------------------- /DC_locals.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teuben/DataComb/HEAD/DC_locals.py.in -------------------------------------------------------------------------------- /DC_pars.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teuben/DataComb/HEAD/DC_pars.md -------------------------------------------------------------------------------- /DC_run.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teuben/DataComb/HEAD/DC_run.md -------------------------------------------------------------------------------- /DC_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teuben/DataComb/HEAD/DC_run.py -------------------------------------------------------------------------------- /DC_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teuben/DataComb/HEAD/DC_script.py -------------------------------------------------------------------------------- /IQA_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teuben/DataComb/HEAD/IQA_script.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teuben/DataComb/HEAD/LICENSE -------------------------------------------------------------------------------- /Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teuben/DataComb/HEAD/Overview.md -------------------------------------------------------------------------------- /Preparation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teuben/DataComb/HEAD/Preparation.md -------------------------------------------------------------------------------- /Quick_start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teuben/DataComb/HEAD/Quick_start.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teuben/DataComb/HEAD/README.md -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teuben/DataComb/HEAD/configure -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teuben/DataComb/HEAD/configure.ac -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teuben/DataComb/HEAD/data/README.md -------------------------------------------------------------------------------- /datacomb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teuben/DataComb/HEAD/datacomb.py -------------------------------------------------------------------------------- /md/bench.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teuben/DataComb/HEAD/md/bench.md -------------------------------------------------------------------------------- /md/bloopers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teuben/DataComb/HEAD/md/bloopers.md -------------------------------------------------------------------------------- /md/datacomb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teuben/DataComb/HEAD/md/datacomb.md -------------------------------------------------------------------------------- /md/hybrid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teuben/DataComb/HEAD/md/hybrid.md -------------------------------------------------------------------------------- /md/m100.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teuben/DataComb/HEAD/md/m100.md -------------------------------------------------------------------------------- /md/qac.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teuben/DataComb/HEAD/md/qac.md -------------------------------------------------------------------------------- /md/skymodel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teuben/DataComb/HEAD/md/skymodel.md -------------------------------------------------------------------------------- /md/stats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teuben/DataComb/HEAD/md/stats.md -------------------------------------------------------------------------------- /md/tclean.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teuben/DataComb/HEAD/md/tclean.md -------------------------------------------------------------------------------- /paper/README: -------------------------------------------------------------------------------- 1 | Here you will find the PASP paper and associated figures. 2 | -------------------------------------------------------------------------------- /templates/DC_pars_GMC-b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teuben/DataComb/HEAD/templates/DC_pars_GMC-b.py -------------------------------------------------------------------------------- /templates/DC_pars_GMC-bench.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teuben/DataComb/HEAD/templates/DC_pars_GMC-bench.py -------------------------------------------------------------------------------- /templates/DC_pars_GMC-c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teuben/DataComb/HEAD/templates/DC_pars_GMC-c.py -------------------------------------------------------------------------------- /templates/DC_pars_Lup3mms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teuben/DataComb/HEAD/templates/DC_pars_Lup3mms.py -------------------------------------------------------------------------------- /templates/DC_pars_M100.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teuben/DataComb/HEAD/templates/DC_pars_M100.py -------------------------------------------------------------------------------- /templates/DC_pars_NGC346.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teuben/DataComb/HEAD/templates/DC_pars_NGC346.py -------------------------------------------------------------------------------- /templates/DC_pars_Template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teuben/DataComb/HEAD/templates/DC_pars_Template.py -------------------------------------------------------------------------------- /templates/DC_pars_pointGauss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teuben/DataComb/HEAD/templates/DC_pars_pointGauss.py -------------------------------------------------------------------------------- /tp2vis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teuben/DataComb/HEAD/tp2vis.py --------------------------------------------------------------------------------