From 34b3d958d10e39da3d19d1f93b9f4330776253e1 Mon Sep 17 00:00:00 2001 From: tlatorre Date: Mon, 23 Sep 2019 09:16:46 -0500 Subject: 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. --- src/hdf5_utils.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/hdf5_utils.h') diff --git a/src/hdf5_utils.h b/src/hdf5_utils.h index 4f6ad32..850355f 100644 --- a/src/hdf5_utils.h +++ b/src/hdf5_utils.h @@ -13,6 +13,7 @@ * will be set to nan. */ typedef struct HDF5Event { int run; + int sub_run; int evn; double gtr; int nhit; -- cgit