aboutsummaryrefslogtreecommitdiff
path: root/src/fit.c
diff options
context:
space:
mode:
authortlatorre <tlatorre@uchicago.edu>2019-09-23 09:16:46 -0500
committertlatorre <tlatorre@uchicago.edu>2019-09-23 09:16:46 -0500
commit34b3d958d10e39da3d19d1f93b9f4330776253e1 (patch)
tree40ced3631657451fe6ff2d45bb5af3ade75e2a3a /src/fit.c
parent213a184162e444a50f328c1106ba5fe47103d280 (diff)
downloadsddm-34b3d958d10e39da3d19d1f93b9f4330776253e1.tar.gz
sddm-34b3d958d10e39da3d19d1f93b9f4330776253e1.tar.bz2
sddm-34b3d958d10e39da3d19d1f93b9f4330776253e1.zip
add sub_run variable to the events array in the HDF5 file
This commit adds the sub_run variable to the ev array in the HDF5 output file and updates plot-energy to order the events using the run and sub_run variables. This fixes a potential issue where I was sorting by GTID before, but the GTID can wrap around and so isn't guaranteed to put the events in the right order.
Diffstat (limited to 'src/fit.c')
-rw-r--r--src/fit.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/fit.c b/src/fit.c
index 056f6b0..7fdf994 100644
--- a/src/fit.c
+++ b/src/fit.c
@@ -6299,6 +6299,7 @@ skip_mc:
if (output) {
hdf5_events[nevents].run = ev.run;
+ hdf5_events[nevents].sub_run = ev.sub_run;
hdf5_events[nevents].evn = bmc.evn;
hdf5_events[nevents].gtr = ev.trigger_time;
hdf5_events[nevents].nhit = ev.nhit;