sodetlib 0.6.1rc1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (35) hide show
  1. sodetlib-0.6.1rc1/LICENSE +25 -0
  2. sodetlib-0.6.1rc1/MANIFEST.in +2 -0
  3. sodetlib-0.6.1rc1/PKG-INFO +5 -0
  4. sodetlib-0.6.1rc1/README.md +37 -0
  5. sodetlib-0.6.1rc1/hammers/jackhammer +761 -0
  6. sodetlib-0.6.1rc1/setup.cfg +12 -0
  7. sodetlib-0.6.1rc1/setup.py +10 -0
  8. sodetlib-0.6.1rc1/sodetlib/__init__.py +22 -0
  9. sodetlib-0.6.1rc1/sodetlib/_version.py +21 -0
  10. sodetlib-0.6.1rc1/sodetlib/constants.py +13 -0
  11. sodetlib-0.6.1rc1/sodetlib/det_config.py +709 -0
  12. sodetlib-0.6.1rc1/sodetlib/noise.py +624 -0
  13. sodetlib-0.6.1rc1/sodetlib/operations/__init__.py +5 -0
  14. sodetlib-0.6.1rc1/sodetlib/operations/bias_dets.py +551 -0
  15. sodetlib-0.6.1rc1/sodetlib/operations/bias_steps.py +1248 -0
  16. sodetlib-0.6.1rc1/sodetlib/operations/bias_wave.py +688 -0
  17. sodetlib-0.6.1rc1/sodetlib/operations/complex_impedance.py +651 -0
  18. sodetlib-0.6.1rc1/sodetlib/operations/iv.py +716 -0
  19. sodetlib-0.6.1rc1/sodetlib/operations/optimize.py +189 -0
  20. sodetlib-0.6.1rc1/sodetlib/operations/squid_curves.py +641 -0
  21. sodetlib-0.6.1rc1/sodetlib/operations/tracking.py +624 -0
  22. sodetlib-0.6.1rc1/sodetlib/operations/uxm_relock.py +406 -0
  23. sodetlib-0.6.1rc1/sodetlib/operations/uxm_setup.py +783 -0
  24. sodetlib-0.6.1rc1/sodetlib/py.typed +0 -0
  25. sodetlib-0.6.1rc1/sodetlib/quality_control.py +415 -0
  26. sodetlib-0.6.1rc1/sodetlib/resonator_fitting.py +508 -0
  27. sodetlib-0.6.1rc1/sodetlib/stream.py +291 -0
  28. sodetlib-0.6.1rc1/sodetlib/tes_param_correction.py +579 -0
  29. sodetlib-0.6.1rc1/sodetlib/util.py +880 -0
  30. sodetlib-0.6.1rc1/sodetlib.egg-info/PKG-INFO +5 -0
  31. sodetlib-0.6.1rc1/sodetlib.egg-info/SOURCES.txt +34 -0
  32. sodetlib-0.6.1rc1/sodetlib.egg-info/dependency_links.txt +1 -0
  33. sodetlib-0.6.1rc1/sodetlib.egg-info/top_level.txt +1 -0
  34. sodetlib-0.6.1rc1/tests/test_det_config.py +50 -0
  35. sodetlib-0.6.1rc1/versioneer.py +2277 -0
@@ -0,0 +1,25 @@
1
+ BSD 2-Clause License
2
+
3
+ Copyright (c) 2019, Simons Observatory
4
+ All rights reserved.
5
+
6
+ Redistribution and use in source and binary forms, with or without
7
+ modification, are permitted provided that the following conditions are met:
8
+
9
+ 1. Redistributions of source code must retain the above copyright notice, this
10
+ list of conditions and the following disclaimer.
11
+
12
+ 2. Redistributions in binary form must reproduce the above copyright notice,
13
+ this list of conditions and the following disclaimer in the documentation
14
+ and/or other materials provided with the distribution.
15
+
16
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
17
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
20
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
22
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
23
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
24
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
25
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -0,0 +1,2 @@
1
+ include versioneer.py
2
+ include sodetlib/_version.py
@@ -0,0 +1,5 @@
1
+ Metadata-Version: 2.1
2
+ Name: sodetlib
3
+ Version: 0.6.1rc1
4
+ Summary: SODETLIB
5
+ License-File: LICENSE
@@ -0,0 +1,37 @@
1
+ # SODETLIB
2
+
3
+ This repository contains tools for controlling the Simons Observatory readout
4
+ system, and performing initial data analysis for detector characterization.
5
+
6
+ ## Installation
7
+
8
+ Instructions for setting up a SMuRF server can be found on the
9
+ [SO Wiki].
10
+
11
+ For offline analysis of sodetlib data files, you can also install sodetlib
12
+ by cloning this repo and running:
13
+
14
+ ```
15
+ pip3 install .
16
+ ```
17
+
18
+ [SO Wiki]: http://simonsobservatory.wikidot.com/smurf-software-setup
19
+
20
+ ## Documentation
21
+
22
+ Sodetlib documentation is hosted on [ReadTheDocs].
23
+
24
+ [ReadTheDocs]: https://sodetlib.readthedocs.io/en/latest/
25
+
26
+ ## Contributing
27
+
28
+ Contributions to SODETLIB are very welcome!
29
+ Pull requests must be approved by one member of the simonsobs team before being
30
+ merged.
31
+
32
+ ## Licence
33
+
34
+ This project is licensed under the BSD 2-Clause License - see the [LICENSE]
35
+ file for details.
36
+
37
+ [LICENSE]: LICENSE