pyccapt 0.2.0__tar.gz → 0.2.2__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.
- pyccapt-0.2.2/CHANGELOG.txt +28 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/LICENSE +674 -674
- {pyccapt-0.2.0 → pyccapt-0.2.2}/MANIFEST.in +16 -16
- {pyccapt-0.2.0 → pyccapt-0.2.2}/PKG-INFO +378 -341
- {pyccapt-0.2.0 → pyccapt-0.2.2}/README.md +245 -221
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/__init__.py +3 -3
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/calibration/CALIBRATION.md +87 -67
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/calibration/DATA_STRUCTURE.md +61 -58
- {pyccapt-0.2.0/pyccapt/control/thorlabs_apt → pyccapt-0.2.2/pyccapt/calibration}/__init__.py +2 -1
- pyccapt-0.2.2/pyccapt/calibration/clustering/__init__.py +31 -0
- pyccapt-0.2.2/pyccapt/calibration/clustering/clustering.py +827 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/calibration/clustering/isosurface.py +270 -270
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/calibration/core/__init__.py +15 -13
- pyccapt-0.2.2/pyccapt/calibration/core/adaptive_residual_calibration.py +492 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/calibration/core/background.py +10 -10
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/calibration/core/calibration.py +1449 -838
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/calibration/core/correction_models.py +129 -87
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/calibration/core/diagnostics.py +131 -130
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/calibration/core/exceptions.py +13 -13
- pyccapt-0.2.2/pyccapt/calibration/core/flight_path_t0.py +442 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/calibration/core/gui_ion_select.py +182 -182
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/calibration/core/hist_bin_optimizer.py +190 -190
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/calibration/core/interactive_point_identification.py +134 -134
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/calibration/core/ion_selection.py +726 -659
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/calibration/core/logging_library.py +66 -66
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/calibration/core/mc_plot.py +639 -569
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/calibration/core/mc_plot_api.py +255 -230
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/calibration/core/mc_plot_background_helpers.py +176 -176
- pyccapt-0.2.2/pyccapt/calibration/core/mc_plot_peak_helpers.py +1102 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/calibration/core/mc_plot_selector_helpers.py +53 -53
- pyccapt-0.2.2/pyccapt/calibration/core/ml_calibration.py +361 -0
- pyccapt-0.2.2/pyccapt/calibration/core/peak_spectral_analysis.py +331 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/calibration/core/share_variables.py +386 -235
- pyccapt-0.2.2/pyccapt/calibration/core/spectrum_simulation.py +90 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/calibration/core/tools.py +415 -380
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/calibration/core/validation.py +91 -72
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/calibration/core/widgets.py +313 -297
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/calibration/data_tools/__init__.py +1 -1
- pyccapt-0.2.2/pyccapt/calibration/data_tools/_raw_workflow_common.py +672 -0
- pyccapt-0.2.2/pyccapt/calibration/data_tools/_raw_workflow_roentdek.py +383 -0
- pyccapt-0.2.2/pyccapt/calibration/data_tools/_raw_workflow_surface_concept.py +562 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/calibration/data_tools/ato_tools.py +168 -166
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/calibration/data_tools/data_loadcrop.py +855 -679
- pyccapt-0.2.2/pyccapt/calibration/data_tools/data_tools.py +626 -0
- pyccapt-0.2.2/pyccapt/calibration/data_tools/dataset_path_qt.py +52 -0
- pyccapt-0.2.2/pyccapt/calibration/data_tools/file_dialog.py +42 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/calibration/data_tools/merge_range.py +55 -55
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/calibration/data_tools/plot_vline_draw.py +130 -130
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/calibration/data_tools/raw_data_surface_concept.py +455 -514
- pyccapt-0.2.2/pyccapt/calibration/data_tools/raw_data_workflow.py +123 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/calibration/data_tools/run_dataset_path_qt.py +12 -11
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/calibration/data_tools/selectors_data.py +98 -90
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/calibration/leap_tools/__init__.py +5 -1
- pyccapt-0.2.2/pyccapt/calibration/leap_tools/cameca_raw/README.md +20 -0
- pyccapt-0.2.2/pyccapt/calibration/leap_tools/cameca_raw/__init__.py +35 -0
- pyccapt-0.2.2/pyccapt/calibration/leap_tools/cameca_raw/rhit_extract.py +7 -0
- pyccapt-0.2.2/pyccapt/calibration/leap_tools/cameca_raw/rhit_tools.py +589 -0
- pyccapt-0.2.2/pyccapt/calibration/leap_tools/cameca_raw/str_tools.py +445 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/calibration/leap_tools/ccapt_tools.py +197 -189
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/calibration/leap_tools/cloud_plotter.py +143 -138
- pyccapt-0.2.2/pyccapt/calibration/leap_tools/leap_tools.py +968 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/calibration/mc/__init__.py +1 -1
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/calibration/mc/mc_tools.py +106 -106
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/calibration/mc/tof_tools.py +32 -32
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/calibration/path_utils.py +42 -42
- pyccapt-0.2.2/pyccapt/calibration/reconstructions/__init__.py +5 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/calibration/reconstructions/crystal_helper.py +357 -356
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/calibration/reconstructions/density_map.py +233 -233
- pyccapt-0.2.2/pyccapt/calibration/reconstructions/fft.py +117 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/calibration/reconstructions/io_utils.py +81 -81
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/calibration/reconstructions/iso_surface.py +1223 -878
- pyccapt-0.2.2/pyccapt/calibration/reconstructions/proxigram.py +236 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/calibration/reconstructions/rdf.py +134 -130
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/calibration/reconstructions/reconstruction.py +1155 -1098
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/calibration/reconstructions/rotation_tools.py +108 -108
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/calibration/reconstructions/sdm.py +522 -513
- pyccapt-0.2.2/pyccapt/calibration/reconstructions/specimen_builder.py +173 -0
- pyccapt-0.2.2/pyccapt/calibration/reconstructions/tapsim_builder.py +1043 -0
- pyccapt-0.2.2/pyccapt/calibration/reflectron_correction/__init__.py +31 -0
- pyccapt-0.2.2/pyccapt/calibration/reflectron_correction/core.py +387 -0
- pyccapt-0.2.2/pyccapt/calibration/reflectron_correction/data/presets/3000XHR_Leoben_21_14093_intersections.csv +193 -0
- pyccapt-0.2.2/pyccapt/calibration/reflectron_correction/data/presets/3000XHR_Leoben_21_14093_reference.csv +161 -0
- pyccapt-0.2.2/pyccapt/calibration/reflectron_correction/data/presets/3000XHR_Leoben_21_14093_triangles.csv +334 -0
- pyccapt-0.2.2/pyccapt/calibration/reflectron_correction/data/presets/4000XHR_Erlangen_56_4833_intersections.csv +193 -0
- pyccapt-0.2.2/pyccapt/calibration/reflectron_correction/data/presets/4000XHR_Erlangen_56_4833_reference.csv +161 -0
- pyccapt-0.2.2/pyccapt/calibration/reflectron_correction/data/presets/4000XHR_Erlangen_56_4833_triangles.csv +334 -0
- pyccapt-0.2.2/pyccapt/calibration/reflectron_correction/data/presets/5000XR_Leoben_5124_368_intersections.csv +193 -0
- pyccapt-0.2.2/pyccapt/calibration/reflectron_correction/data/presets/5000XR_Leoben_5124_368_reference.csv +161 -0
- pyccapt-0.2.2/pyccapt/calibration/reflectron_correction/data/presets/5000XR_Leoben_5124_368_triangles.csv +334 -0
- pyccapt-0.2.2/pyccapt/calibration/reflectron_correction/data/presets/5000XR_Oxford_5083_23091_intersections.csv +193 -0
- pyccapt-0.2.2/pyccapt/calibration/reflectron_correction/data/presets/5000XR_Oxford_5083_23091_reference.csv +161 -0
- pyccapt-0.2.2/pyccapt/calibration/reflectron_correction/data/presets/5000XR_Oxford_5083_23091_triangles.csv +334 -0
- pyccapt-0.2.2/pyccapt/calibration/reflectron_correction/data/presets/6000XR_Chalmers_6002_770_intersections.csv +193 -0
- pyccapt-0.2.2/pyccapt/calibration/reflectron_correction/data/presets/6000XR_Chalmers_6002_770_reference.csv +161 -0
- pyccapt-0.2.2/pyccapt/calibration/reflectron_correction/data/presets/6000XR_Chalmers_6002_770_triangles.csv +335 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/config.toml +88 -74
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/CONTROL.md +93 -93
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/DATA_STRUCTURE.md +67 -67
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/__init__.py +13 -13
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/__main__.py +48 -48
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/apt/apt_exp_control.py +715 -704
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/apt/apt_exp_control_func.py +218 -218
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/apt/detector_runtime.py +77 -77
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/apt/experiment_state.py +212 -212
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/core/baking_loging.py +218 -218
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/core/com_ports.py +17 -17
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/core/control_data_tool.py +296 -296
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/core/device_checks.py +245 -245
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/core/experiment_statistics.py +85 -85
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/core/hdf5_creator.py +185 -146
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/core/loggi.py +33 -33
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/core/read_files.py +133 -133
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/core/runtime.py +117 -117
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/core/share_variables.py +382 -382
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/core/tof2mc_simple.py +32 -32
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/devices/camera.py +348 -348
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/devices/edwards_tic.py +43 -43
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/devices/email_send.py +63 -63
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/devices/initialize_devices.py +531 -520
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/devices/pfeiffer_gauges.py +204 -204
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/devices/signal_generator.py +105 -105
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/drs/README.md +3 -3
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/drs/drs.py +107 -107
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/electrode.toml +17 -17
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/gui/gui_baking.py +468 -468
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/gui/gui_cameras.py +762 -762
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/gui/gui_gates.py +464 -464
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/gui/gui_laser_control.py +1014 -1014
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/gui/gui_main.py +1981 -1981
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/gui/gui_pumps_vacuum.py +1049 -1007
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/gui/gui_stage_control.py +294 -294
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/gui/gui_visualization.py +1243 -1243
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/gui/main_parameters.py +320 -320
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/gui/process_coordinator.py +102 -102
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/nkt_photonics/nktpbus_activate.py +40 -40
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/nkt_photonics/origamiClassCLI.py +360 -360
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/tdc_roentdek/README.md +3 -3
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/tdc_roentdek/cobold_tool.py +208 -208
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/tdc_roentdek/global.cfg +18 -18
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/tdc_roentdek/source/global.cfg +18 -18
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/tdc_roentdek/source/lmf2txt.exe +0 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/tdc_roentdek/tdc_roentdek.py +179 -179
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/tdc_surface_concept/README.md +3 -3
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/tdc_surface_concept/scTDC.py +1493 -1456
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/tdc_surface_concept/tdc_gpx3.ini +168 -168
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/tdc_surface_concept/tdc_surface_concept.py +439 -439
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/thorlabs_apt/README.md +55 -55
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/thorlabs_apt/_APTAPI.py +183 -183
- {pyccapt-0.2.0/pyccapt/control/usb_switch → pyccapt-0.2.2/pyccapt/control/thorlabs_apt}/__init__.py +1 -1
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/thorlabs_apt/_error_codes.py +55 -55
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/thorlabs_apt/core.py +1395 -1395
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/thorlabs_apt/thorlab_motor.py +44 -44
- pyccapt-0.2.2/pyccapt/control/usb_switch/__init__.py +1 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/usb_switch/usb_switch.py +52 -52
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/files/PyQt6_UI/README.md +6 -6
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/files/PyQt6_UI/gui_baking.ui +64 -64
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/files/PyQt6_UI/gui_cameras.ui +620 -620
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/files/PyQt6_UI/gui_gates.ui +271 -271
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/files/PyQt6_UI/gui_laser_control.ui +920 -920
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/files/PyQt6_UI/gui_laser_control_special.ui +288 -288
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/files/PyQt6_UI/gui_main.ui +1733 -1733
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/files/PyQt6_UI/gui_pumps_vacuum.ui +744 -744
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/files/PyQt6_UI/gui_stage_control.ui +386 -386
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/files/PyQt6_UI/gui_visualization.ui +639 -639
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt.egg-info/PKG-INFO +378 -341
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt.egg-info/SOURCES.txt +36 -71
- pyccapt-0.2.2/pyproject.toml +51 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/setup.cfg +4 -4
- {pyccapt-0.2.0 → pyccapt-0.2.2}/setup.py +147 -146
- pyccapt-0.2.0/.eggs/pytest_runner-6.0.1-py3.12.egg/ptr/__init__.py +0 -216
- pyccapt-0.2.0/.eggs/pytest_runner-6.0.1-py3.9.egg/ptr/__init__.py +0 -216
- pyccapt-0.2.0/CHANGELOG.txt +0 -8
- pyccapt-0.2.0/docs/conf.py +0 -134
- pyccapt-0.2.0/pyccapt/calibration/__init__.py +0 -13
- pyccapt-0.2.0/pyccapt/calibration/clustering/__init__.py +0 -17
- pyccapt-0.2.0/pyccapt/calibration/clustering/clustering.py +0 -220
- pyccapt-0.2.0/pyccapt/calibration/core/mc_plot_peak_helpers.py +0 -242
- pyccapt-0.2.0/pyccapt/calibration/data_tools/data_tools.py +0 -283
- pyccapt-0.2.0/pyccapt/calibration/data_tools/dataset_path_qt.py +0 -28
- pyccapt-0.2.0/pyccapt/calibration/leap_tools/leap_tools.py +0 -559
- pyccapt-0.2.0/pyccapt/calibration/reconstructions/__init__.py +0 -5
- pyccapt-0.2.0/pyccapt/calibration/reconstructions/fft.py +0 -160
- pyccapt-0.2.0/pyccapt/calibration/tutorials/__init__.py +0 -1
- pyccapt-0.2.0/pyccapt/calibration/tutorials/tutorials_helpers/__init__.py +0 -1
- pyccapt-0.2.0/pyccapt/calibration/tutorials/tutorials_helpers/helper_3d_reconstruction.py +0 -131
- pyccapt-0.2.0/pyccapt/calibration/tutorials/tutorials_helpers/helper_calibration.py +0 -532
- pyccapt-0.2.0/pyccapt/calibration/tutorials/tutorials_helpers/helper_data_loader.py +0 -141
- pyccapt-0.2.0/pyccapt/calibration/tutorials/tutorials_helpers/helper_ion_list.py +0 -258
- pyccapt-0.2.0/pyccapt/calibration/tutorials/tutorials_helpers/helper_ion_selection.py +0 -403
- pyccapt-0.2.0/pyccapt/calibration/tutorials/tutorials_helpers/helper_mc_plot.py +0 -97
- pyccapt-0.2.0/pyccapt/calibration/tutorials/tutorials_helpers/helper_special_crop.py +0 -99
- pyccapt-0.2.0/pyccapt/calibration/tutorials/tutorials_helpers/helper_t_0_tune.py +0 -100
- pyccapt-0.2.0/pyccapt/calibration/tutorials/tutorials_helpers/helper_temporal_crop.py +0 -115
- pyccapt-0.2.0/pyccapt/calibration/tutorials/tutorials_helpers/helper_visualization.py +0 -1186
- pyccapt-0.2.0/pyccapt/control/devices_test/camera_1.py +0 -122
- pyccapt-0.2.0/pyccapt/control/devices_test/camera_2.py +0 -129
- pyccapt-0.2.0/pyccapt/control/devices_test/counter.py +0 -29
- pyccapt-0.2.0/pyccapt/control/devices_test/daqami.py +0 -43
- pyccapt-0.2.0/pyccapt/control/devices_test/drs.py +0 -79
- pyccapt-0.2.0/pyccapt/control/devices_test/gates.py +0 -25
- pyccapt-0.2.0/pyccapt/control/devices_test/lamp_usb_switch.py +0 -66
- pyccapt-0.2.0/pyccapt/control/devices_test/laser_nkt_origami.py +0 -82
- pyccapt-0.2.0/pyccapt/control/devices_test/serial_com_cryovac.py +0 -78
- pyccapt-0.2.0/pyccapt/control/devices_test/serial_com_edwards.py +0 -68
- pyccapt-0.2.0/pyccapt/control/devices_test/serial_com_pfeiffer.py +0 -14
- pyccapt-0.2.0/pyccapt/control/devices_test/serial_com_v_dc.py +0 -80
- pyccapt-0.2.0/pyccapt/control/devices_test/serial_com_v_p.py +0 -60
- pyccapt-0.2.0/pyccapt/control/devices_test/serial_ports_list.py +0 -7
- pyccapt-0.2.0/pyccapt/control/devices_test/siglent_signal_generator.py +0 -58
- pyccapt-0.2.0/pyccapt/control/devices_test/tdc_roentec_t.py +0 -74
- pyccapt-0.2.0/pyccapt/control/devices_test/tdc_surface_concept_t_1.py +0 -140
- pyccapt-0.2.0/pyccapt/control/devices_test/tdc_surface_concept_t_2.py +0 -120
- pyccapt-0.2.0/pyccapt/control/devices_test/tdc_surface_concept_t_3.py +0 -126
- pyccapt-0.2.0/pyccapt/control/devices_test/thorlabs_controller.py +0 -31
- pyccapt-0.2.0/pyccapt/control/drs/source/drs5_lib/include/DRS.h +0 -957
- pyccapt-0.2.0/pyccapt/control/drs/source/drs5_lib/include/averager.h +0 -28
- pyccapt-0.2.0/pyccapt/control/drs/source/drs5_lib/include/drs_exam.h +0 -18
- pyccapt-0.2.0/pyccapt/control/drs/source/drs5_lib/include/libusb.h +0 -2113
- pyccapt-0.2.0/pyccapt/control/drs/source/drs5_lib/include/musbstd.h +0 -98
- pyccapt-0.2.0/pyccapt/control/drs/source/drs5_lib/include/mxml.h +0 -159
- pyccapt-0.2.0/pyccapt/control/drs/source/drs5_lib/include/strlcpy.h +0 -58
- pyccapt-0.2.0/pyccapt/control/drs/source/drs5_lib/src/DRS.cpp +0 -7738
- pyccapt-0.2.0/pyccapt/control/drs/source/drs5_lib/src/averager.cpp +0 -214
- pyccapt-0.2.0/pyccapt/control/drs/source/drs5_lib/src/drs_exam.cpp +0 -152
- pyccapt-0.2.0/pyccapt/control/drs/source/drs5_lib/src/drs_ox.cpp +0 -185
- pyccapt-0.2.0/pyccapt/control/drs/source/drs5_lib/src/musbstd.c +0 -698
- pyccapt-0.2.0/pyccapt/control/drs/source/drs5_lib/src/mxml.c +0 -2371
- pyccapt-0.2.0/pyccapt/control/drs/source/drs5_lib/src/strlcpy.c +0 -104
- pyccapt-0.2.0/pyccapt/control/drs/src/DRS.obj +0 -0
- pyccapt-0.2.0/pyccapt/control/drs/src/averager.obj +0 -0
- pyccapt-0.2.0/pyccapt/control/drs/src/drs_exam.obj +0 -0
- pyccapt-0.2.0/pyccapt/control/drs/src/drs_ox.obj +0 -0
- pyccapt-0.2.0/pyccapt/control/drs/src/musbstd.obj +0 -0
- pyccapt-0.2.0/pyccapt/control/drs/src/mxml.obj +0 -0
- pyccapt-0.2.0/pyccapt/control/drs/src/strlcpy.obj +0 -0
- pyccapt-0.2.0/pyccapt/control/tdc_roentdek/source/LMF_IO.cpp +0 -6726
- pyccapt-0.2.0/pyccapt/control/tdc_roentdek/source/LMF_IO.h +0 -966
- pyccapt-0.2.0/pyccapt/control/tdc_roentdek/source/simple_read_TDC8HP.sln +0 -43
- pyccapt-0.2.0/pyccapt/control/tdc_roentdek/source/simple_read_TDC8HP.vcxproj +0 -581
- pyccapt-0.2.0/pyccapt/control/tdc_roentdek/source/simple_read_TDC8HP.vcxproj.filters +0 -36
- pyccapt-0.2.0/pyccapt/control/tdc_roentdek/source/simple_read_TDC8HP.vcxproj.user +0 -3
- pyccapt-0.2.0/pyccapt/control/tdc_roentdek/source/simple_read_TDC8HP_grouped_LMF.zip +0 -0
- pyccapt-0.2.0/pyccapt/control/tdc_roentdek/source/tdcmanager.h +0 -241
- pyccapt-0.2.0/pyccapt/control/tdc_roentdek/source/wrapper_read_TDC8HP.cpp +0 -435
- pyccapt-0.2.0/pyccapt/control/tdc_surface_concept/__init__.py +0 -1
- pyccapt-0.2.0/pyccapt/control/thorlabs_apt/APTAPI.h +0 -475
- pyccapt-0.2.0/pyccapt/files/IonenlisteAPT.xlsx +0 -0
- pyccapt-0.2.0/pyccapt/files/counter_experiments.txt +0 -1
- pyccapt-0.2.0/pyproject.toml +0 -10
- pyccapt-0.2.0/tests/__init__.py +0 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/apt/__init__.py +0 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/core/__init__.py +0 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/devices/__init__.py +0 -0
- {pyccapt-0.2.0/pyccapt/control/devices_test → pyccapt-0.2.2/pyccapt/control/drs}/__init__.py +0 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/drs/drs_lib.dll +0 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/drs/drs_lib.exp +0 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/drs/drs_lib.lib +0 -0
- {pyccapt-0.2.0/pyccapt/control/drs → pyccapt-0.2.2/pyccapt/control/gui}/__init__.py +0 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/nkt_photonics/__init__.py +0 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/tdc_roentdek/CoboldPC2011R5-2_Header-Template_1TDC8HP.lmf +0 -0
- {pyccapt-0.2.0/pyccapt/control/gui → pyccapt-0.2.2/pyccapt/control/tdc_roentdek}/__init__.py +0 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/tdc_roentdek/source/CoboldPC2011R5-2_Header-Template_1TDC8HP.lmf +0 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/tdc_roentdek/source/hptdc_driver_3.5.2_x64.lib +0 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/tdc_roentdek/source/hptdc_driver_3.5.2_x86.lib +0 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/tdc_roentdek/wrapper_read_TDC8HP_x64.dll +0 -0
- {pyccapt-0.2.0/pyccapt/control/tdc_roentdek → pyccapt-0.2.2/pyccapt/control/tdc_surface_concept}/__init__.py +0 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/tdc_surface_concept/okFrontPanel.dll +0 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/tdc_surface_concept/pthreadVC2.dll +0 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/tdc_surface_concept/sc2ddld304_1b_tagrst.bit +0 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/tdc_surface_concept/scDeviceClass60.dll +0 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/tdc_surface_concept/scTDC1.dll +0 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/tdc_surface_concept/scTDC1.lib +0 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/tdc_surface_concept/scTDC_hdf50.dll +0 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/thorlabs_apt/APT Server.chm +0 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/thorlabs_apt/APT.dll +0 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/thorlabs_apt/APT.lib +0 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/thorlabs_apt/APTChopper.ocx +0 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/thorlabs_apt/APTLaser.ocx +0 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/thorlabs_apt/APTPZMotor.ocx +0 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/thorlabs_apt/APTQuad.ocx +0 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/thorlabs_apt/APTTEC.ocx +0 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/thorlabs_apt/GdiPlus.dll +0 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/thorlabs_apt/MG17Comms.dll +0 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/thorlabs_apt/MG17Core.dll +0 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/thorlabs_apt/MG17Logger.ocx +0 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/thorlabs_apt/MG17Motor.ocx +0 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/thorlabs_apt/MG17NanoTrak.ocx +0 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/thorlabs_apt/MG17Piezo.ocx +0 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/thorlabs_apt/MG17System.ocx +0 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/thorlabs_apt/MG17UIThread.dll +0 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/thorlabs_apt/MG17Utils.dll +0 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/thorlabs_apt/ftd2xx.dll +0 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/control/usb_switch/USBaccessX64.dll +0 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/files/arrow.png +0 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/files/close_all.png +0 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/files/color_scheme.h5 +0 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/files/cryo_load_main_open.png +0 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/files/cryo_load_open.png +0 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/files/cryo_open.png +0 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/files/field_density_table.h5 +0 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/files/green-led-on.png +0 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/files/isotopeTable.h5 +0 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/files/led-orange.png +0 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/files/led-red-on.png +0 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/files/load_main_open.png +0 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/files/load_open.png +0 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/files/logo.png +0 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/files/logo2.png +0 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt/files/main_open.png +0 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt.egg-info/dependency_links.txt +0 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt.egg-info/entry_points.txt +0 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt.egg-info/requires.txt +0 -0
- {pyccapt-0.2.0 → pyccapt-0.2.2}/pyccapt.egg-info/top_level.txt +0 -0
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
Change Log
|
|
2
|
+
==========
|
|
3
|
+
|
|
4
|
+
0.2.2 (04.05.2026)
|
|
5
|
+
-------------------
|
|
6
|
+
- Add GitHub Actions CI: tests (matrix on Linux/Windows × Py 3.10/3.11/3.12),
|
|
7
|
+
ruff lint, Sphinx docs build, GHCR Docker image, tag-driven PyPI release.
|
|
8
|
+
- Document the tag-driven release runbook in CONTRIBUTING.md, including PyPI
|
|
9
|
+
Trusted Publishing setup and recovery from failed releases.
|
|
10
|
+
- Fix `store_df_to_hdf` calling `DataFrame.to_hdf` with a positional `key`
|
|
11
|
+
on modern pandas (TypeError: takes 2 positional arguments but 3 given).
|
|
12
|
+
- Make `_build_peak_template` skip-not-fail when a peak window has fewer
|
|
13
|
+
than 25 ions, aligning the threshold with `_split_reference_peaks` so
|
|
14
|
+
adaptive residual calibration degrades gracefully on sparse peaks.
|
|
15
|
+
- Mock optional control-extra deps (PyQt6, pyqtgraph, pyserial, opencv,
|
|
16
|
+
pyvisa) in docs/conf.py so the docs build runs in the calibration-only
|
|
17
|
+
CI environment.
|
|
18
|
+
- README badges: distinguish the docs CI badge (now "docs build") from the
|
|
19
|
+
Read the Docs link badge.
|
|
20
|
+
- Loosen the synthetic-fixture spread tolerance in
|
|
21
|
+
test_adaptive_residual_calibration_reduces_windowed_peak_drift to 2x to
|
|
22
|
+
match the metric's noise floor on small datasets.
|
|
23
|
+
|
|
24
|
+
0.0.1 (23.03.2022)
|
|
25
|
+
-------------------
|
|
26
|
+
- First Release
|
|
27
|
+
|
|
28
|
+
|