File tree 2 files changed +7
-0
lines changed
2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change 1
1
ctapipe v0.23.2 (2025-01-21)
2
2
============================
3
3
4
+ Bug Fixes
5
+ ---------
6
+
7
+ - Fill ``ctapipe.containers.SimulatedCameraContainer.true_image_sum `` in
8
+ ``HDF5EventSource ``. Always returned default value of -1 before the fix. [`#2680 <https://github.com/cta-observatory/ctapipe/pull/2680 >`__]
9
+
4
10
Maintenance
5
11
-----------
6
12
Original file line number Diff line number Diff line change @@ -708,6 +708,7 @@ def _generator(self):
708
708
if self .has_simulated_dl1 :
709
709
simulated_image_row = next (simulated_image_iterators [key ])
710
710
simulated .true_image = simulated_image_row ["true_image" ]
711
+ simulated .true_image_sum = simulated_image_row ["true_image_sum" ]
711
712
712
713
if DataLevel .DL1_PARAMETERS in self .datalevels :
713
714
# Is there a smarter way to unpack this?
You can’t perform that action at this time.
0 commit comments