From f7eacbb52db769634e6de5f36b9b2f4f9c84c6f2 Mon Sep 17 00:00:00 2001 From: tlatorre Date: Tue, 10 Sep 2019 14:35:08 -0500 Subject: add best_uncal_q to the pmt_hit struct and use it in the muon cut This commit adds a field to the pmt_hit struct called best_uncal_q which represents the best ECA calibrated charge (in units of QHS counts above pedestals). This is then used in the muon data cleaning cut. --- src/event.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/event.h') diff --git a/src/event.h b/src/event.h index c07d648..4776527 100644 --- a/src/event.h +++ b/src/event.h @@ -42,6 +42,8 @@ typedef struct pmt_hit { float ehs; /* ECA calibrated QLX (pedestal subtracted). */ float elx; + /* Best ECA calibrated charge (in units of EHS). */ + float best_uncal_q; /* Best charge. */ float q; /* Integrated charge. */ -- cgit