├── .github ├── dependabot.yml ├── example.py ├── resonator.py └── workflows │ └── tests.yml ├── .gitignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── STYLE.md ├── VERSION ├── __init__.py ├── examples ├── example_data_dcm.py ├── example_data_reflection.py └── example_fit_dcm.py ├── plotting └── plotres.py ├── requirements.txt ├── setup.py ├── src ├── __init__.py ├── fit_methods │ ├── __init__.py │ ├── dcm.py │ ├── fit_method.py │ ├── lce.py │ └── reflection.py ├── fitter.py ├── resonator.py └── utils.py └── test └── test_dcm.py /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boulder-Cryogenic-Quantum-Testbed/scresonators/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boulder-Cryogenic-Quantum-Testbed/scresonators/HEAD/.github/example.py -------------------------------------------------------------------------------- /.github/resonator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boulder-Cryogenic-Quantum-Testbed/scresonators/HEAD/.github/resonator.py -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boulder-Cryogenic-Quantum-Testbed/scresonators/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boulder-Cryogenic-Quantum-Testbed/scresonators/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boulder-Cryogenic-Quantum-Testbed/scresonators/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boulder-Cryogenic-Quantum-Testbed/scresonators/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boulder-Cryogenic-Quantum-Testbed/scresonators/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boulder-Cryogenic-Quantum-Testbed/scresonators/HEAD/README.md -------------------------------------------------------------------------------- /STYLE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boulder-Cryogenic-Quantum-Testbed/scresonators/HEAD/STYLE.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.0.1 -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boulder-Cryogenic-Quantum-Testbed/scresonators/HEAD/__init__.py -------------------------------------------------------------------------------- /examples/example_data_dcm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boulder-Cryogenic-Quantum-Testbed/scresonators/HEAD/examples/example_data_dcm.py -------------------------------------------------------------------------------- /examples/example_data_reflection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boulder-Cryogenic-Quantum-Testbed/scresonators/HEAD/examples/example_data_reflection.py -------------------------------------------------------------------------------- /examples/example_fit_dcm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boulder-Cryogenic-Quantum-Testbed/scresonators/HEAD/examples/example_fit_dcm.py -------------------------------------------------------------------------------- /plotting/plotres.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boulder-Cryogenic-Quantum-Testbed/scresonators/HEAD/plotting/plotres.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boulder-Cryogenic-Quantum-Testbed/scresonators/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boulder-Cryogenic-Quantum-Testbed/scresonators/HEAD/setup.py -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boulder-Cryogenic-Quantum-Testbed/scresonators/HEAD/src/__init__.py -------------------------------------------------------------------------------- /src/fit_methods/__init__.py: -------------------------------------------------------------------------------- 1 | from .dcm import DCM -------------------------------------------------------------------------------- /src/fit_methods/dcm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boulder-Cryogenic-Quantum-Testbed/scresonators/HEAD/src/fit_methods/dcm.py -------------------------------------------------------------------------------- /src/fit_methods/fit_method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boulder-Cryogenic-Quantum-Testbed/scresonators/HEAD/src/fit_methods/fit_method.py -------------------------------------------------------------------------------- /src/fit_methods/lce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boulder-Cryogenic-Quantum-Testbed/scresonators/HEAD/src/fit_methods/lce.py -------------------------------------------------------------------------------- /src/fit_methods/reflection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boulder-Cryogenic-Quantum-Testbed/scresonators/HEAD/src/fit_methods/reflection.py -------------------------------------------------------------------------------- /src/fitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boulder-Cryogenic-Quantum-Testbed/scresonators/HEAD/src/fitter.py -------------------------------------------------------------------------------- /src/resonator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boulder-Cryogenic-Quantum-Testbed/scresonators/HEAD/src/resonator.py -------------------------------------------------------------------------------- /src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boulder-Cryogenic-Quantum-Testbed/scresonators/HEAD/src/utils.py -------------------------------------------------------------------------------- /test/test_dcm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boulder-Cryogenic-Quantum-Testbed/scresonators/HEAD/test/test_dcm.py --------------------------------------------------------------------------------