gondola 0.11.37__tar.gz → 0.11.39__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 (113) hide show
  1. {gondola-0.11.37 → gondola-0.11.39}/Cargo.lock +1 -1
  2. {gondola-0.11.37 → gondola-0.11.39}/Cargo.toml +1 -1
  3. {gondola-0.11.37 → gondola-0.11.39}/PKG-INFO +1 -1
  4. {gondola-0.11.37 → gondola-0.11.39}/python/gondola/tof/analysis.py +14 -11
  5. {gondola-0.11.37 → gondola-0.11.39}/src/tof/analysis.rs +33 -0
  6. {gondola-0.11.37 → gondola-0.11.39}/.gitignore +0 -0
  7. {gondola-0.11.37 → gondola-0.11.39}/README.md +0 -0
  8. {gondola-0.11.37 → gondola-0.11.39}/alert-manifest-test.toml +0 -0
  9. {gondola-0.11.37 → gondola-0.11.39}/benches/bench.rs +0 -0
  10. {gondola-0.11.37 → gondola-0.11.39}/build.sh +0 -0
  11. {gondola-0.11.37 → gondola-0.11.39}/diesel.toml +0 -0
  12. {gondola-0.11.37 → gondola-0.11.39}/gondola-0.11.24-cp311-abi3-manylinux_2_34_x86_64.whl +0 -0
  13. {gondola-0.11.37 → gondola-0.11.39}/liftof-config-decompressed.toml +0 -0
  14. {gondola-0.11.37 → gondola-0.11.39}/liftof-config-default.toml +0 -0
  15. {gondola-0.11.37 → gondola-0.11.39}/liftof-config-test-changed.toml +0 -0
  16. {gondola-0.11.37 → gondola-0.11.39}/liftof-config.diff +0 -0
  17. {gondola-0.11.37 → gondola-0.11.39}/liftof-config.toml +0 -0
  18. {gondola-0.11.37 → gondola-0.11.39}/publish_to_bluejay.sh +0 -0
  19. {gondola-0.11.37 → gondola-0.11.39}/pyproject.toml +0 -0
  20. {gondola-0.11.37 → gondola-0.11.39}/python/gondola/__init__.py +0 -0
  21. {gondola-0.11.37 → gondola-0.11.39}/python/gondola/calibration.py +0 -0
  22. {gondola-0.11.37 → gondola-0.11.39}/python/gondola/db.py +0 -0
  23. {gondola-0.11.37 → gondola-0.11.39}/python/gondola/events.py +0 -0
  24. {gondola-0.11.37 → gondola-0.11.39}/python/gondola/gaps_flight.db +0 -0
  25. {gondola-0.11.37 → gondola-0.11.39}/python/gondola/io/__init__.py +0 -0
  26. {gondola-0.11.37 → gondola-0.11.39}/python/gondola/io/streamers.py +0 -0
  27. {gondola-0.11.37 → gondola-0.11.39}/python/gondola/reconstruction/__init__.py +0 -0
  28. {gondola-0.11.37 → gondola-0.11.39}/python/gondola/tof/__init__.py +0 -0
  29. {gondola-0.11.37 → gondola-0.11.39}/python/gondola/tracker/__init__.py +0 -0
  30. {gondola-0.11.37 → gondola-0.11.39}/python/gondola/tracker/analysis.py +0 -0
  31. {gondola-0.11.37 → gondola-0.11.39}/python/gondola/visual/__init__.py +0 -0
  32. {gondola-0.11.37 → gondola-0.11.39}/python/gondola/visual/tof.py +0 -0
  33. {gondola-0.11.37 → gondola-0.11.39}/python/gondola/visual/tracker.py +0 -0
  34. {gondola-0.11.37 → gondola-0.11.39}/src/calibration/tof.rs +0 -0
  35. {gondola-0.11.37 → gondola-0.11.39}/src/calibration/tracker.rs +0 -0
  36. {gondola-0.11.37 → gondola-0.11.39}/src/calibration.rs +0 -0
  37. {gondola-0.11.37 → gondola-0.11.39}/src/constants.rs +0 -0
  38. {gondola-0.11.37 → gondola-0.11.39}/src/database/schema.rs +0 -0
  39. {gondola-0.11.37 → gondola-0.11.39}/src/database.rs +0 -0
  40. {gondola-0.11.37 → gondola-0.11.39}/src/errors.rs +0 -0
  41. {gondola-0.11.37 → gondola-0.11.39}/src/events/rb_event.rs +0 -0
  42. {gondola-0.11.37 → gondola-0.11.39}/src/events/rb_event_header.rs +0 -0
  43. {gondola-0.11.37 → gondola-0.11.39}/src/events/rb_waveform.rs +0 -0
  44. {gondola-0.11.37 → gondola-0.11.39}/src/events/telemetry_event.rs +0 -0
  45. {gondola-0.11.37 → gondola-0.11.39}/src/events/tof_event.rs +0 -0
  46. {gondola-0.11.37 → gondola-0.11.39}/src/events/tof_hit.rs +0 -0
  47. {gondola-0.11.37 → gondola-0.11.39}/src/events/tracker_hit.rs +0 -0
  48. {gondola-0.11.37 → gondola-0.11.39}/src/events.rs +0 -0
  49. {gondola-0.11.37 → gondola-0.11.39}/src/io/caraspace/frame.rs +0 -0
  50. {gondola-0.11.37 → gondola-0.11.39}/src/io/caraspace/reader.rs +0 -0
  51. {gondola-0.11.37 → gondola-0.11.39}/src/io/caraspace/socket_reader.rs +0 -0
  52. {gondola-0.11.37 → gondola-0.11.39}/src/io/caraspace/writer.rs +0 -0
  53. {gondola-0.11.37 → gondola-0.11.39}/src/io/caraspace.rs +0 -0
  54. {gondola-0.11.37 → gondola-0.11.39}/src/io/data_source.rs +0 -0
  55. {gondola-0.11.37 → gondola-0.11.39}/src/io/ipbus.rs +0 -0
  56. {gondola-0.11.37 → gondola-0.11.39}/src/io/parsers.rs +0 -0
  57. {gondola-0.11.37 → gondola-0.11.39}/src/io/root_reader.rs +0 -0
  58. {gondola-0.11.37 → gondola-0.11.39}/src/io/serialization.rs +0 -0
  59. {gondola-0.11.37 → gondola-0.11.39}/src/io/streamers.rs +0 -0
  60. {gondola-0.11.37 → gondola-0.11.39}/src/io/telemetry_reader.rs +0 -0
  61. {gondola-0.11.37 → gondola-0.11.39}/src/io/tof_reader.rs +0 -0
  62. {gondola-0.11.37 → gondola-0.11.39}/src/io/tof_writer.rs +0 -0
  63. {gondola-0.11.37 → gondola-0.11.39}/src/io.rs +0 -0
  64. {gondola-0.11.37 → gondola-0.11.39}/src/lib.rs +0 -0
  65. {gondola-0.11.37 → gondola-0.11.39}/src/monitoring/cpu_moni_data.rs +0 -0
  66. {gondola-0.11.37 → gondola-0.11.39}/src/monitoring/heartbeats/data_sink_hb.rs +0 -0
  67. {gondola-0.11.37 → gondola-0.11.39}/src/monitoring/heartbeats/event_builder_hb.rs +0 -0
  68. {gondola-0.11.37 → gondola-0.11.39}/src/monitoring/heartbeats/master_trigger_hb.rs +0 -0
  69. {gondola-0.11.37 → gondola-0.11.39}/src/monitoring/heartbeats.rs +0 -0
  70. {gondola-0.11.37 → gondola-0.11.39}/src/monitoring/ltb_moni_data.rs +0 -0
  71. {gondola-0.11.37 → gondola-0.11.39}/src/monitoring/mtb_moni_data.rs +0 -0
  72. {gondola-0.11.37 → gondola-0.11.39}/src/monitoring/pa_moni_data.rs +0 -0
  73. {gondola-0.11.37 → gondola-0.11.39}/src/monitoring/pb_moni_data.rs +0 -0
  74. {gondola-0.11.37 → gondola-0.11.39}/src/monitoring/rb_moni_data.rs +0 -0
  75. {gondola-0.11.37 → gondola-0.11.39}/src/monitoring/run_statistics.rs +0 -0
  76. {gondola-0.11.37 → gondola-0.11.39}/src/monitoring.rs +0 -0
  77. {gondola-0.11.37 → gondola-0.11.39}/src/packets/bfsw_ack_packet.rs +0 -0
  78. {gondola-0.11.37 → gondola-0.11.39}/src/packets/gps_packet.rs +0 -0
  79. {gondola-0.11.37 → gondola-0.11.39}/src/packets/magnetometer.rs +0 -0
  80. {gondola-0.11.37 → gondola-0.11.39}/src/packets/pdu_packet.rs +0 -0
  81. {gondola-0.11.37 → gondola-0.11.39}/src/packets/telemetry_packet.rs +0 -0
  82. {gondola-0.11.37 → gondola-0.11.39}/src/packets/telemetry_packet_header.rs +0 -0
  83. {gondola-0.11.37 → gondola-0.11.39}/src/packets/telemetry_packet_type.rs +0 -0
  84. {gondola-0.11.37 → gondola-0.11.39}/src/packets/tof_packet.rs +0 -0
  85. {gondola-0.11.37 → gondola-0.11.39}/src/packets/tof_packet_type.rs +0 -0
  86. {gondola-0.11.37 → gondola-0.11.39}/src/packets/tracker.rs +0 -0
  87. {gondola-0.11.37 → gondola-0.11.39}/src/packets/tracker_header.rs +0 -0
  88. {gondola-0.11.37 → gondola-0.11.39}/src/packets.rs +0 -0
  89. {gondola-0.11.37 → gondola-0.11.39}/src/prelude.rs +0 -0
  90. {gondola-0.11.37 → gondola-0.11.39}/src/python.rs +0 -0
  91. {gondola-0.11.37 → gondola-0.11.39}/src/random.rs +0 -0
  92. {gondola-0.11.37 → gondola-0.11.39}/src/stats.rs +0 -0
  93. {gondola-0.11.37 → gondola-0.11.39}/src/tof/alerts.rs +0 -0
  94. {gondola-0.11.37 → gondola-0.11.39}/src/tof/algorithms.rs +0 -0
  95. {gondola-0.11.37 → gondola-0.11.39}/src/tof/analysis_engine.rs +0 -0
  96. {gondola-0.11.37 → gondola-0.11.39}/src/tof/commands.rs +0 -0
  97. {gondola-0.11.37 → gondola-0.11.39}/src/tof/config.rs +0 -0
  98. {gondola-0.11.37 → gondola-0.11.39}/src/tof/cuts.rs +0 -0
  99. {gondola-0.11.37 → gondola-0.11.39}/src/tof/detector_status.rs +0 -0
  100. {gondola-0.11.37 → gondola-0.11.39}/src/tof/master_trigger/control.rs +0 -0
  101. {gondola-0.11.37 → gondola-0.11.39}/src/tof/master_trigger/registers.rs +0 -0
  102. {gondola-0.11.37 → gondola-0.11.39}/src/tof/master_trigger.rs +0 -0
  103. {gondola-0.11.37 → gondola-0.11.39}/src/tof/panic.rs +0 -0
  104. {gondola-0.11.37 → gondola-0.11.39}/src/tof/rb_paddle_id.rs +0 -0
  105. {gondola-0.11.37 → gondola-0.11.39}/src/tof/settings.rs +0 -0
  106. {gondola-0.11.37 → gondola-0.11.39}/src/tof/signal_handler.rs +0 -0
  107. {gondola-0.11.37 → gondola-0.11.39}/src/tof/thread_control.rs +0 -0
  108. {gondola-0.11.37 → gondola-0.11.39}/src/tof/tof_response.rs +0 -0
  109. {gondola-0.11.37 → gondola-0.11.39}/src/tof.rs +0 -0
  110. {gondola-0.11.37 → gondola-0.11.39}/src/tracker/strips.rs +0 -0
  111. {gondola-0.11.37 → gondola-0.11.39}/src/tracker.rs +0 -0
  112. {gondola-0.11.37 → gondola-0.11.39}/src/version.rs +0 -0
  113. {gondola-0.11.37 → gondola-0.11.39}/tests/test.rs +0 -0
@@ -1361,7 +1361,7 @@ checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
1361
1361
 
1362
1362
  [[package]]
1363
1363
  name = "gondola-core"
1364
- version = "0.11.37"
1364
+ version = "0.11.39"
1365
1365
  dependencies = [
1366
1366
  "cfg-if 1.0.0",
1367
1367
  "chrono",
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "gondola-core"
3
- version = "0.11.37"
3
+ version = "0.11.39"
4
4
  edition = "2024"
5
5
  readme = "README.md"
6
6
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: gondola
3
- Version: 0.11.37
3
+ Version: 0.11.39
4
4
  Requires-Dist: tqdm>=4.0
5
5
  Requires-Dist: numpy>=2.3
6
6
  Requires-Dist: matplotlib>=3.10
@@ -137,15 +137,16 @@ class TofAnalysis:
137
137
 
138
138
  def _nhit_plots(self):
139
139
  nhit_plots = {
140
- 'hit' : d.histogram.hist1d(self.NHIT_BINS),
141
- 'nhit_cbe' : d.histogram.hist1d(self.NHIT_BINS),
142
- 'nhit_umb' : d.histogram.hist1d(self.NHIT_BINS),
143
- 'nhit_cor' : d.histogram.hist1d(self.NHIT_BINS),
144
- 'thit' : d.histogram.hist1d(self.NHIT_BINS),
145
- 'rblink' : d.histogram.hist1d(self.NHIT_BINS),
146
- 'miss_hit' : d.histogram.hist1d(self.PID_BINS),
140
+ 'hit' : d.histogram.hist1d(self.NHIT_BINS),
141
+ 'nhit_cbe' : d.histogram.hist1d(self.NHIT_BINS),
142
+ 'nhit_umb' : d.histogram.hist1d(self.NHIT_BINS),
143
+ 'nhit_cor' : d.histogram.hist1d(self.NHIT_BINS),
144
+ 'i_vs_o_nhit': d.histogram.hist2d((self.NHIT_BINS, self.NHIT_BINS)),
145
+ 'thit' : d.histogram.hist1d(self.NHIT_BINS),
146
+ 'rblink' : d.histogram.hist1d(self.NHIT_BINS),
147
+ 'miss_hit' : d.histogram.hist1d(self.PID_BINS),
147
148
  # these are non causal hits
148
- 'nc_pdls' : d.histogram.hist1d(self.PID_BINS),
149
+ 'nc_pdls' : d.histogram.hist1d(self.PID_BINS),
149
150
  }
150
151
  return nhit_plots
151
152
 
@@ -445,9 +446,11 @@ class TofAnalysis:
445
446
  if self._analysis.hit_cache_len >= self.event_cache_size:
446
447
  # hit statistics
447
448
  self.nhit_plots['hit' ].fill(self._analysis.c_hit)
448
- self.nhit_plots['nhit_umb'].fill(self._analysis.c_hit)
449
- self.nhit_plots['nhit_cor'].fill(self._analysis.c_hit)
450
- self.nhit_plots['nhit_cbe'].fill(self._analysis.c_hit)
449
+ self.nhit_plots['nhit_umb'].fill(self._analysis.c_hit_umb)
450
+ self.nhit_plots['nhit_cor'].fill(self._analysis.c_hit_cor)
451
+ self.nhit_plots['nhit_cbe'].fill(self._analysis.c_hit_cbe)
452
+ outer_n_hit = [self._analysis.c_hit_umb[k] + self._analysis.c_hit_cor[k] for k in range(len(self._analysis.c_hit_cor))]
453
+ self.nhit_plots['i_vs_o_nhit'].fill((self._analysis.c_hit_cbe, outer_n_hit))
451
454
  self.nhit_plots['thit' ].fill(self._analysis.c_thit)
452
455
  self.nhit_plots['rblink' ].fill(self._analysis.c_rblink)
453
456
  self.nhit_plots['miss_hit'].fill(self._analysis.c_miss_hit)
@@ -1157,6 +1157,39 @@ impl TofAnalysis {
1157
1157
  return Ok(py_array);
1158
1158
  }
1159
1159
 
1160
+ /// This is the number of hits/event for each seen event
1161
+ #[pyo3(name="c_hit_cbe")]
1162
+ #[getter]
1163
+ fn c_hit_cbe_py<'py>(&'py self, py: Python<'py>) -> PyResult<Bound<'py, PyArray1<u8>>> {
1164
+ let slice = &self.c_hit_cbe[..];
1165
+ // this is supposed to be readonly
1166
+ // FIXME - check this!
1167
+ let py_array = PyArray1::from_slice(py, slice);
1168
+ return Ok(py_array);
1169
+ }
1170
+
1171
+ /// This is the number of hits/event for each seen event
1172
+ #[pyo3(name="c_hit_umb")]
1173
+ #[getter]
1174
+ fn c_hit_umb_py<'py>(&'py self, py: Python<'py>) -> PyResult<Bound<'py, PyArray1<u8>>> {
1175
+ let slice = &self.c_hit_umb[..];
1176
+ // this is supposed to be readonly
1177
+ // FIXME - check this!
1178
+ let py_array = PyArray1::from_slice(py, slice);
1179
+ return Ok(py_array);
1180
+ }
1181
+
1182
+ /// This is the number of hits/event for each seen event
1183
+ #[pyo3(name="c_hit_cor")]
1184
+ #[getter]
1185
+ fn c_hit_cor_py<'py>(&'py self, py: Python<'py>) -> PyResult<Bound<'py, PyArray1<u8>>> {
1186
+ let slice = &self.c_hit_cor[..];
1187
+ // this is supposed to be readonly
1188
+ // FIXME - check this!
1189
+ let py_array = PyArray1::from_slice(py, slice);
1190
+ return Ok(py_array);
1191
+ }
1192
+
1160
1193
  /// This is the number of TRIGGER hits/event for each seen event
1161
1194
  #[pyo3(name="c_thit")]
1162
1195
  #[getter]
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