├── .gitignore ├── LICENSE ├── README.md ├── images ├── fswitch_int.png └── spectrum_int.png ├── notebooks ├── dicke.py ├── obs.ipynb ├── obs_ex0.ipynb └── scratch.ipynb ├── rtlobs ├── __init__.py ├── calibrate.py ├── collect.py ├── collect_experimental.py ├── post_process.py └── utils.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.npy 2 | *.png 3 | *.gif -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanmayer/rtlobs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanmayer/rtlobs/HEAD/README.md -------------------------------------------------------------------------------- /images/fswitch_int.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanmayer/rtlobs/HEAD/images/fswitch_int.png -------------------------------------------------------------------------------- /images/spectrum_int.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanmayer/rtlobs/HEAD/images/spectrum_int.png -------------------------------------------------------------------------------- /notebooks/dicke.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanmayer/rtlobs/HEAD/notebooks/dicke.py -------------------------------------------------------------------------------- /notebooks/obs.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanmayer/rtlobs/HEAD/notebooks/obs.ipynb -------------------------------------------------------------------------------- /notebooks/obs_ex0.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanmayer/rtlobs/HEAD/notebooks/obs_ex0.ipynb -------------------------------------------------------------------------------- /notebooks/scratch.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanmayer/rtlobs/HEAD/notebooks/scratch.ipynb -------------------------------------------------------------------------------- /rtlobs/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /rtlobs/calibrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanmayer/rtlobs/HEAD/rtlobs/calibrate.py -------------------------------------------------------------------------------- /rtlobs/collect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanmayer/rtlobs/HEAD/rtlobs/collect.py -------------------------------------------------------------------------------- /rtlobs/collect_experimental.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanmayer/rtlobs/HEAD/rtlobs/collect_experimental.py -------------------------------------------------------------------------------- /rtlobs/post_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanmayer/rtlobs/HEAD/rtlobs/post_process.py -------------------------------------------------------------------------------- /rtlobs/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanmayer/rtlobs/HEAD/rtlobs/utils.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanmayer/rtlobs/HEAD/setup.py --------------------------------------------------------------------------------