gondola 0.12.0__tar.gz → 0.12.1__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 (102) hide show
  1. {gondola-0.12.0 → gondola-0.12.1}/Cargo.lock +2 -1
  2. {gondola-0.12.0 → gondola-0.12.1}/Cargo.toml +7 -3
  3. {gondola-0.12.0 → gondola-0.12.1}/PKG-INFO +1 -1
  4. {gondola-0.12.0 → gondola-0.12.1}/src/python.rs +1 -1
  5. {gondola-0.12.0 → gondola-0.12.1}/src/tof/cuts.rs +2 -0
  6. {gondola-0.12.0 → gondola-0.12.1}/src/tof.rs +1 -0
  7. {gondola-0.12.0 → gondola-0.12.1}/.gitignore +0 -0
  8. {gondola-0.12.0 → gondola-0.12.1}/README.md +0 -0
  9. {gondola-0.12.0 → gondola-0.12.1}/alert-manifest-test.toml +0 -0
  10. {gondola-0.12.0 → gondola-0.12.1}/benches/bench.rs +0 -0
  11. {gondola-0.12.0 → gondola-0.12.1}/diesel.toml +0 -0
  12. {gondola-0.12.0 → gondola-0.12.1}/publish_to_bluejay.sh +0 -0
  13. {gondola-0.12.0 → gondola-0.12.1}/pyproject.toml +0 -0
  14. {gondola-0.12.0 → gondola-0.12.1}/python/gondola/__init__.py +0 -0
  15. {gondola-0.12.0 → gondola-0.12.1}/python/gondola/calibration.py +0 -0
  16. {gondola-0.12.0 → gondola-0.12.1}/python/gondola/db.py +0 -0
  17. {gondola-0.12.0 → gondola-0.12.1}/python/gondola/gaps_flight.db +0 -0
  18. {gondola-0.12.0 → gondola-0.12.1}/python/gondola/io/__init__.py +0 -0
  19. {gondola-0.12.0 → gondola-0.12.1}/python/gondola/reconstruction/__init__.py +0 -0
  20. {gondola-0.12.0 → gondola-0.12.1}/python/gondola/tof/__init__.py +0 -0
  21. {gondola-0.12.0 → gondola-0.12.1}/python/gondola/tof/analysis.py +0 -0
  22. {gondola-0.12.0 → gondola-0.12.1}/python/gondola/tracker/__init__.py +0 -0
  23. {gondola-0.12.0 → gondola-0.12.1}/python/gondola/tracker/analysis.py +0 -0
  24. {gondola-0.12.0 → gondola-0.12.1}/python/gondola/visual/__init__.py +0 -0
  25. {gondola-0.12.0 → gondola-0.12.1}/python/gondola/visual/tof.py +0 -0
  26. {gondola-0.12.0 → gondola-0.12.1}/python/gondola/visual/tracker.py +0 -0
  27. {gondola-0.12.0 → gondola-0.12.1}/src/calibration/tof.rs +0 -0
  28. {gondola-0.12.0 → gondola-0.12.1}/src/calibration/tracker.rs +0 -0
  29. {gondola-0.12.0 → gondola-0.12.1}/src/calibration.rs +0 -0
  30. {gondola-0.12.0 → gondola-0.12.1}/src/constants.rs +0 -0
  31. {gondola-0.12.0 → gondola-0.12.1}/src/database/schema.rs +0 -0
  32. {gondola-0.12.0 → gondola-0.12.1}/src/database.rs +0 -0
  33. {gondola-0.12.0 → gondola-0.12.1}/src/errors.rs +0 -0
  34. {gondola-0.12.0 → gondola-0.12.1}/src/events/rb_event.rs +0 -0
  35. {gondola-0.12.0 → gondola-0.12.1}/src/events/rb_event_header.rs +0 -0
  36. {gondola-0.12.0 → gondola-0.12.1}/src/events/rb_waveform.rs +0 -0
  37. {gondola-0.12.0 → gondola-0.12.1}/src/events/telemetry_event.rs +0 -0
  38. {gondola-0.12.0 → gondola-0.12.1}/src/events/tof_event.rs +0 -0
  39. {gondola-0.12.0 → gondola-0.12.1}/src/events/tof_hit.rs +0 -0
  40. {gondola-0.12.0 → gondola-0.12.1}/src/events/tracker_hit.rs +0 -0
  41. {gondola-0.12.0 → gondola-0.12.1}/src/events.rs +0 -0
  42. {gondola-0.12.0 → gondola-0.12.1}/src/io/caraspace/frame.rs +0 -0
  43. {gondola-0.12.0 → gondola-0.12.1}/src/io/caraspace/reader.rs +0 -0
  44. {gondola-0.12.0 → gondola-0.12.1}/src/io/caraspace/socket_reader.rs +0 -0
  45. {gondola-0.12.0 → gondola-0.12.1}/src/io/caraspace/writer.rs +0 -0
  46. {gondola-0.12.0 → gondola-0.12.1}/src/io/caraspace.rs +0 -0
  47. {gondola-0.12.0 → gondola-0.12.1}/src/io/data_source.rs +0 -0
  48. {gondola-0.12.0 → gondola-0.12.1}/src/io/ipbus.rs +0 -0
  49. {gondola-0.12.0 → gondola-0.12.1}/src/io/parsers.rs +0 -0
  50. {gondola-0.12.0 → gondola-0.12.1}/src/io/root_reader.rs +0 -0
  51. {gondola-0.12.0 → gondola-0.12.1}/src/io/serialization.rs +0 -0
  52. {gondola-0.12.0 → gondola-0.12.1}/src/io/streamers.rs +0 -0
  53. {gondola-0.12.0 → gondola-0.12.1}/src/io/telemetry_reader.rs +0 -0
  54. {gondola-0.12.0 → gondola-0.12.1}/src/io/tof_reader.rs +0 -0
  55. {gondola-0.12.0 → gondola-0.12.1}/src/io/tof_writer.rs +0 -0
  56. {gondola-0.12.0 → gondola-0.12.1}/src/io.rs +0 -0
  57. {gondola-0.12.0 → gondola-0.12.1}/src/lib.rs +0 -0
  58. {gondola-0.12.0 → gondola-0.12.1}/src/monitoring/cpu_moni_data.rs +0 -0
  59. {gondola-0.12.0 → gondola-0.12.1}/src/monitoring/heartbeats/data_sink_hb.rs +0 -0
  60. {gondola-0.12.0 → gondola-0.12.1}/src/monitoring/heartbeats/event_builder_hb.rs +0 -0
  61. {gondola-0.12.0 → gondola-0.12.1}/src/monitoring/heartbeats/master_trigger_hb.rs +0 -0
  62. {gondola-0.12.0 → gondola-0.12.1}/src/monitoring/heartbeats.rs +0 -0
  63. {gondola-0.12.0 → gondola-0.12.1}/src/monitoring/ltb_moni_data.rs +0 -0
  64. {gondola-0.12.0 → gondola-0.12.1}/src/monitoring/mtb_moni_data.rs +0 -0
  65. {gondola-0.12.0 → gondola-0.12.1}/src/monitoring/pa_moni_data.rs +0 -0
  66. {gondola-0.12.0 → gondola-0.12.1}/src/monitoring/pb_moni_data.rs +0 -0
  67. {gondola-0.12.0 → gondola-0.12.1}/src/monitoring/rb_moni_data.rs +0 -0
  68. {gondola-0.12.0 → gondola-0.12.1}/src/monitoring/run_statistics.rs +0 -0
  69. {gondola-0.12.0 → gondola-0.12.1}/src/monitoring.rs +0 -0
  70. {gondola-0.12.0 → gondola-0.12.1}/src/packets/bfsw_ack_packet.rs +0 -0
  71. {gondola-0.12.0 → gondola-0.12.1}/src/packets/gps_packet.rs +0 -0
  72. {gondola-0.12.0 → gondola-0.12.1}/src/packets/magnetometer.rs +0 -0
  73. {gondola-0.12.0 → gondola-0.12.1}/src/packets/telemetry_packet.rs +0 -0
  74. {gondola-0.12.0 → gondola-0.12.1}/src/packets/telemetry_packet_header.rs +0 -0
  75. {gondola-0.12.0 → gondola-0.12.1}/src/packets/telemetry_packet_type.rs +0 -0
  76. {gondola-0.12.0 → gondola-0.12.1}/src/packets/tof_packet.rs +0 -0
  77. {gondola-0.12.0 → gondola-0.12.1}/src/packets/tof_packet_type.rs +0 -0
  78. {gondola-0.12.0 → gondola-0.12.1}/src/packets/tracker.rs +0 -0
  79. {gondola-0.12.0 → gondola-0.12.1}/src/packets/tracker_header.rs +0 -0
  80. {gondola-0.12.0 → gondola-0.12.1}/src/packets.rs +0 -0
  81. {gondola-0.12.0 → gondola-0.12.1}/src/prelude.rs +0 -0
  82. {gondola-0.12.0 → gondola-0.12.1}/src/random.rs +0 -0
  83. {gondola-0.12.0 → gondola-0.12.1}/src/stats.rs +0 -0
  84. {gondola-0.12.0 → gondola-0.12.1}/src/tof/alerts.rs +0 -0
  85. {gondola-0.12.0 → gondola-0.12.1}/src/tof/algorithms.rs +0 -0
  86. {gondola-0.12.0 → gondola-0.12.1}/src/tof/analysis.rs +0 -0
  87. {gondola-0.12.0 → gondola-0.12.1}/src/tof/analysis_engine.rs +0 -0
  88. {gondola-0.12.0 → gondola-0.12.1}/src/tof/commands.rs +0 -0
  89. {gondola-0.12.0 → gondola-0.12.1}/src/tof/config.rs +0 -0
  90. {gondola-0.12.0 → gondola-0.12.1}/src/tof/detector_status.rs +0 -0
  91. {gondola-0.12.0 → gondola-0.12.1}/src/tof/master_trigger/control.rs +0 -0
  92. {gondola-0.12.0 → gondola-0.12.1}/src/tof/master_trigger/registers.rs +0 -0
  93. {gondola-0.12.0 → gondola-0.12.1}/src/tof/master_trigger.rs +0 -0
  94. {gondola-0.12.0 → gondola-0.12.1}/src/tof/rb_paddle_id.rs +0 -0
  95. {gondola-0.12.0 → gondola-0.12.1}/src/tof/settings.rs +0 -0
  96. {gondola-0.12.0 → gondola-0.12.1}/src/tof/signal_handler.rs +0 -0
  97. {gondola-0.12.0 → gondola-0.12.1}/src/tof/thread_control.rs +0 -0
  98. {gondola-0.12.0 → gondola-0.12.1}/src/tof/tof_response.rs +0 -0
  99. {gondola-0.12.0 → gondola-0.12.1}/src/tracker/strips.rs +0 -0
  100. {gondola-0.12.0 → gondola-0.12.1}/src/tracker.rs +0 -0
  101. {gondola-0.12.0 → gondola-0.12.1}/src/version.rs +0 -0
  102. {gondola-0.12.0 → gondola-0.12.1}/tests/test.rs +0 -0
@@ -1352,7 +1352,7 @@ checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
1352
1352
 
1353
1353
  [[package]]
1354
1354
  name = "gondola-core"
1355
- version = "0.12.0"
1355
+ version = "0.12.1"
1356
1356
  dependencies = [
1357
1357
  "cfg-if 1.0.0",
1358
1358
  "chrono",
@@ -4813,6 +4813,7 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
4813
4813
  [[package]]
4814
4814
  name = "tof-control"
4815
4815
  version = "0.9.5"
4816
+ source = "git+https://github.com/GAPS-Collab/tof-control.git?branch=minimal#23ab243acf48c4c71a994964dee0b612b8cb6132"
4816
4817
  dependencies = [
4817
4818
  "bindgen",
4818
4819
  "cc",
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "gondola-core"
3
- version = "0.12.0"
3
+ version = "0.12.1"
4
4
  edition = "2024"
5
5
  readme = "README.md"
6
6
 
@@ -44,6 +44,12 @@ root = ["oxyroot", "root-io"]
44
44
  # will be required for the build of liftof
45
45
  tof-liftof = ["signal-hook"]
46
46
 
47
+ [dependencies.tof-control]
48
+ version = "0.9"
49
+ optional = true
50
+ git = "https://github.com/GAPS-Collab/tof-control.git"
51
+ branch = "minimal"
52
+
47
53
  [dependencies.pyo3]
48
54
  version = "0.25"
49
55
  features = ["extension-module", "multiple-pymethods", "abi3-py311", "chrono"]
@@ -109,5 +115,3 @@ libsqlite3-sys = { version = "0.35", features = ["bundled"] }
109
115
 
110
116
  # for testing / features
111
117
  rand = { version = "0.9", optional = true}
112
- # Takeru's tof-control
113
- tof-control = {path = "../../../resources/extern/tof-control", optional = true, version = "0.9", features=[] }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: gondola
3
- Version: 0.12.0
3
+ Version: 0.12.1
4
4
  Requires-Dist: tqdm>=4.0
5
5
  Requires-Dist: numpy>=2.3
6
6
  Requires-Dist: matplotlib>=3.10
@@ -68,7 +68,7 @@ macro_rules! pythonize_telemetry {
68
68
  fn from_telemetrypacket(packet : TelemetryPacket) -> PyResult<Self> {
69
69
  //if packet.telemetry_header.packet_type !=
70
70
  match Self::from_bytestream(&packet.payload, &mut 0) {
71
- Ok(mut tl) => {
71
+ Ok(tl) => {
72
72
  return Ok(tl);
73
73
  }
74
74
  Err(err) => {
@@ -394,6 +394,7 @@ impl TofCuts {
394
394
  /// and update the counters.
395
395
  /// If cleanings are enabled, this will
396
396
  /// change the event in-place!
397
+ #[cfg(feature="database")]
397
398
  pub fn accept(&mut self, ev : &mut TofEvent) -> bool {
398
399
  if self.is_void() {
399
400
  return true;
@@ -696,6 +697,7 @@ impl TofCuts {
696
697
  self.clear_stats();
697
698
  }
698
699
 
700
+ #[cfg(feature="database")]
699
701
  #[pyo3(name="accept")]
700
702
  fn accept_py(&mut self, event : &mut TofEvent) -> bool {
701
703
  self.accept(event)
@@ -28,6 +28,7 @@ pub mod thread_control;
28
28
  pub use thread_control::ThreadControl;
29
29
  #[cfg(feature="tof-liftof")]
30
30
  pub mod master_trigger;
31
+ #[cfg(feature="tof-liftof")]
31
32
  pub use master_trigger::*;
32
33
  #[cfg(feature="tof-liftof")]
33
34
  pub use master_trigger::control::*;
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes